Module: MobyUtil::XML::Nokogiri::Document
- Includes:
- Node
- Defined in:
- lib/tdriver/util/xml/parsers/nokogiri/document.rb
Overview
behaviour
Instance Method Summary collapse
-
#initialize(xml, options = {}) ⇒ Object
TODO: document me.
-
#root ⇒ Object
TODO: document me.
Methods included from Node
#<=>, #==, #[], #[]=, #add_previous_sibling, #at_xpath, #attribute, #attributes, #blank?, #children, #content, #each, #inner_html, #parent, #remove, #replace, #to_s, #xpath
Methods included from Abstraction
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class MobyUtil::XML::Nokogiri::Abstraction
Instance Method Details
#initialize(xml, options = {}) ⇒ Object
TODO: document me
31 32 33 34 35 36 37 38 39 |
# File 'lib/tdriver/util/xml/parsers/nokogiri/document.rb', line 31 def initialize( xml, = {} ) @options = initialize_cache @xml = parse( xml ) end |