Class: XMLRPC::XMLWriter::Abstract (Ruby 2.3.4)

XMLRPC::XMLWriter::Abstract

Public Instance Methods

ele(name, *children)
 
               # File xmlrpc/create.rb, line 16
def ele(name, *children)
  element(name, nil, *children)
end
            
tag(name, txt)
 
               # File xmlrpc/create.rb, line 20
def tag(name, txt)
  element(name, nil, text(txt))
end