Module: Wakizashi
- Defined in:
- lib/wakizashi/base.rb,
lib/wakizashi/version.rb,
lib/wakizashi/xml_element.rb,
lib/wakizashi/xml_document.rb
Defined Under Namespace
Modules: Document, Element
Classes: ParseError
Constant Summary
collapse
- VERSION =
'0.1.1'
Class Method Summary
collapse
Class Method Details
.HTML(html, *options) ⇒ Object
10
11
12
|
# File 'lib/wakizashi/base.rb', line 10
def HTML(html, *options)
::GDataXMLDocument.with_html(html, *options)
end
|
.XML(xml, *options) ⇒ Object
6
7
8
|
# File 'lib/wakizashi/base.rb', line 6
def XML(xml, *options)
::GDataXMLDocument.with_xml(xml, *options)
end
|