class Xommelier::RSS::Rss

Public Instance Methods

method_missing(method_name, *args) click to toggle source

noinspection RubyResolve

Calls superclass method
# 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