class Lutaml::Model::TomlAdapter::TomlRbAdapter

def self.parse(toml)

def self.parse(toml)
  data = TomlRB.parse(toml)
  new(data)
end

def to_toml(*)

def to_toml(*)
  TomlRB.dump(to_h)
end