module Lutaml::Uml::Formatter
Public Class Methods
all()
click to toggle source
# File lib/lutaml/uml/formatter.rb, line 7 def all @all ||= [] end
find_by_name(name)
click to toggle source
# File lib/lutaml/uml/formatter.rb, line 11 def find_by_name(name) name = name.to_sym all.detect { |formatter_class| formatter_class.name == name } end