Class RSS::Rss::Channel::Image
In: lib/rss/0.9.rb
Parent: Element

Methods

maker_target   new  

Included Modules

RSS09

Public Class methods

[Source]

     # File lib/rss/0.9.rb, line 190
190:         def initialize(*args)
191:           if Utils.element_initialize_arguments?(args)
192:             super
193:           else
194:             super()
195:             self.url = args[0]
196:             self.title = args[1]
197:             self.link = args[2]
198:             self.width = args[3]
199:             self.height = args[4]
200:             self.description = args[5]
201:           end
202:         end

Private Instance methods

[Source]

     # File lib/rss/0.9.rb, line 205
205:         def maker_target(maker)
206:           maker.image
207:         end

[Validate]