Namespace
Methods
I
N
S
T
Included Modules
Attributes
[W] feed_version
[RW] rss_version
Class Public methods
new(feed_version, version=nil, encoding=nil, standalone=nil)
# File lib/rss/0.9.rb, line 29
def initialize(feed_version, version=nil, encoding=nil, standalone=nil)
  super
  @feed_type = "rss"
end
Instance Public methods
image()
# File lib/rss/0.9.rb, line 42
def image
  if @channel
    @channel.image
  else
    nil
  end
end
items()
# File lib/rss/0.9.rb, line 34
def items
  if @channel
    @channel.items
  else
    []
  end
end
setup_maker_elements(maker)
# File lib/rss/0.9.rb, line 58
def setup_maker_elements(maker)
  super
  items.each do |item|
    item.setup_maker(maker.items)
  end
  image.setup_maker(maker) if image
  textinput.setup_maker(maker) if textinput
end
textinput()
# File lib/rss/0.9.rb, line 50
def textinput
  if @channel
    @channel.textInput
  else
    nil
  end
end