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

Private Instance methods

[Source]

     # File lib/rss/0.9.rb, line 210
210:         def maker_target(maker)
211:           maker.image
212:         end

[Validate]