Class: XMLRPC::XMLWriter::Abstract
- Inherits:
-
Object
- Object
- XMLRPC::XMLWriter::Abstract
- Defined in:
- lib/xmlrpc/create.rb
Instance Method Summary collapse
Instance Method Details
#ele(name, *children) ⇒ Object
15 16 17 |
# File 'lib/xmlrpc/create.rb', line 15 def ele(name, *children) element(name, nil, *children) end |
#tag(name, txt) ⇒ Object
19 20 21 |
# File 'lib/xmlrpc/create.rb', line 19 def tag(name, txt) element(name, nil, text(txt)) end |