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