Methods
M
N
S
Included Modules
Class Public methods
new(*args)
# File ../ruby/lib/rss/0.9.rb, line 318
def initialize(*args)
  if Utils.element_initialize_arguments?(args)
    super
  else
    super()
    self.url = args[0]
    self.length = args[1]
    self.type = args[2]
  end
end
Instance Private methods
maker_target(item)
# File ../ruby/lib/rss/0.9.rb, line 330
def maker_target(item)
  item.enclosure
end
setup_maker_attributes(enclosure)
# File ../ruby/lib/rss/0.9.rb, line 334
def setup_maker_attributes(enclosure)
  enclosure.url = url
  enclosure.length = length
  enclosure.type = type
end