Class: Xommelier::RSS::Rss
- Inherits:
-
Element
- Object
- Xml::Element
- Element
- Xommelier::RSS::Rss
- Defined in:
- lib/xommelier/rss.rb
Constant Summary
Constants included from Xml::Element::Serialization
Xml::Element::Serialization::SAVE_OPTIONS, Xml::Element::Serialization::SERIALIZATION_OPTIONS
Instance Attribute Summary
Attributes inherited from Xml::Element
Attributes included from Xml::Element::Namespace
Instance Method Summary collapse
-
#method_missing(method_name, *args) ⇒ Object
noinspection RubyResolve.
Methods inherited from Element
Methods inherited from Xml::Element
Methods included from Xml::Element::Serialization
#<=>, #==, #=~, #from_xml, #to_hash, #to_nokogiri, #to_s, #to_xml
Methods included from Xml::Element::Namespace
Constructor Details
This class inherits a constructor from Xommelier::Xml::Element
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name, *args) ⇒ Object
noinspection RubyResolve
280 281 282 283 284 285 286 |
# File 'lib/xommelier/rss.rb', line 280 def method_missing(method_name, *args) if channel.respond_to?(method_name) channel.send(method_name, *args) else super end end |