Sha256: 77086d67ac4e7273427c91386364815ac127df18ce32bcdfaf9e2e1e6b7ac169
Contents?: true
Size: 364 Bytes
Versions: 51
Compression:
Stored size: 364 Bytes
Contents
# frozen_string_literal: true module Lutaml module Uml module Formatter class << self def all @all ||= [] end def find_by_name(name) name = name.to_sym all.detect { |formatter_class| formatter_class.name == name } end end end end end require "lutaml/uml/formatter/graphviz"
Version data entries
51 entries across 51 versions & 2 rubygems