Class: RDF::RDFa::Reader::Nokogiri::NodeSetProxy
- Defined in:
- vendor/bundler/ruby/3.3.0/bundler/gems/rdf-rdfa-ea6265716853/lib/rdf/rdfa/reader/nokogiri.rb
Overview
NodeSet proxy
Instance Attribute Summary collapse
-
#node_set ⇒ Object
readonly
Returns the value of attribute node_set.
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
Instance Method Summary collapse
-
#each {|| ... } ⇒ Object
Return a proxy for each child.
-
#initialize(node_set, parent) ⇒ NodeSetProxy
constructor
A new instance of NodeSetProxy.
-
#method_missing(method, *args) ⇒ Object
Proxy for everything else to @node_set.
Constructor Details
#initialize(node_set, parent) ⇒ NodeSetProxy
Returns a new instance of NodeSetProxy.
133 134 135 136 |
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/rdf-rdfa-ea6265716853/lib/rdf/rdfa/reader/nokogiri.rb', line 133 def initialize(node_set, parent) @node_set = node_set @parent = parent end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args) ⇒ Object
Proxy for everything else to @node_set
151 152 153 |
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/rdf-rdfa-ea6265716853/lib/rdf/rdfa/reader/nokogiri.rb', line 151 def method_missing(method, *args) @node_set.send(method, *args) end |
Instance Attribute Details
#node_set ⇒ Object (readonly)
Returns the value of attribute node_set.
130 131 132 |
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/rdf-rdfa-ea6265716853/lib/rdf/rdfa/reader/nokogiri.rb', line 130 def node_set @node_set end |
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
131 132 133 |
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/rdf-rdfa-ea6265716853/lib/rdf/rdfa/reader/nokogiri.rb', line 131 def parent @parent end |