Module: XML::Feed::Builder

Defined in:
lib/xml/libxml/feed/builder.rb

Defined Under Namespace

Classes: Rss

Class Method Summary collapse

Class Method Details

.method_missing(method, *args) ⇒ Object



4
5
6
7
# File 'lib/xml/libxml/feed/builder.rb', line 4

def self.method_missing(method, *args)
    require "xml/libxml/feed/builders/#{method.to_s.downcase}"
    return self.const_get(method.to_s.capitalize).new(*args)
end