module Lutaml::Formatter

Public Class Methods

all() click to toggle source
# File lib/lutaml/formatter.rb, line 6
def all
  @all ||= []
end
find_by_name(name) click to toggle source
# File lib/lutaml/formatter.rb, line 10
def find_by_name(name)
  name = name.to_sym

  all.detect { |formatter_class| formatter_class.name == name }
end