class Lutaml::Model::Xml::Builder::Nokogiri

def method_missing(method_name, *args, &block)

def method_missing(method_name, *args, &block)
  if block
    xml.public_send(method_name, *args, &block)
  else
    xml.public_send(method_name, *args)
  end
end