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 191
191:         def initialize(*args)
192:           if Utils.element_initialize_arguments?(args)
193:             super
194:           else
195:             super()
196:             self.url = args[0]
197:             self.title = args[1]
198:             self.link = args[2]
199:             self.width = args[3]
200:             self.height = args[4]
201:             self.description = args[5]
202:           end
203:         end

Private Instance methods

[Source]

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

[Validate]