Module: UCD::Formatter
- Defined in:
- lib/ucd/formatter.rb,
lib/ucd/formatter/base.rb,
lib/ucd/formatter/graphviz.rb
Defined Under Namespace
Class Method Summary collapse
Class Method Details
.all ⇒ Object
5 6 7 |
# File 'lib/ucd/formatter.rb', line 5 def all @all ||= [] end |
.find_by_name(name) ⇒ Object
9 10 11 12 13 |
# File 'lib/ucd/formatter.rb', line 9 def find_by_name(name) name = name.to_sym all.find { |formatter_class| formatter_class.name == name } end |