| Class | RSS::Rss::Channel::Image |
| In: |
lib/rss/0.9.rb
|
| Parent: | Element |
# 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