Module: Lutaml::Uml::Formatter
- Defined in:
- lib/lutaml/uml/formatter.rb,
lib/lutaml/uml/formatter/base.rb,
lib/lutaml/uml/formatter/graphviz.rb
Defined Under Namespace
Class Method Summary collapse
Class Method Details
.all ⇒ Object
7 8 9 |
# File 'lib/lutaml/uml/formatter.rb', line 7 def all @all ||= [] end |
.find_by_name(name) ⇒ Object
11 12 13 14 15 |
# 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 |