Class | RSS::ITunesChannelModel::ITunesOwner |
In: |
lib/rss/itunes.rb
|
Parent: | Element |
# File lib/rss/itunes.rb, line 214 214: def initialize(*args) 215: if Utils.element_initialize_arguments?(args) 216: super 217: else 218: super() 219: self.itunes_name = args[0] 220: self.itunes_email = args[1] 221: end 222: end
# File lib/rss/itunes.rb, line 224 224: def full_name 225: tag_name_with_prefix(ITUNES_PREFIX) 226: end