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