class RSS::ITunesChannelModel::ITunesOwner

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File rss-0.2.9/lib/rss/itunes.rb, line 217
def initialize(*args)
  if Utils.element_initialize_arguments?(args)
    super
  else
    super()
    self.itunes_name = args[0]
    self.itunes_email = args[1]
  end
end
required_prefix() click to toggle source
# File rss-0.2.9/lib/rss/itunes.rb, line 199
def required_prefix
  ITUNES_PREFIX
end
required_uri() click to toggle source
# File rss-0.2.9/lib/rss/itunes.rb, line 203
def required_uri
  ITUNES_URI
end

Public Instance Methods

full_name() click to toggle source
# File rss-0.2.9/lib/rss/itunes.rb, line 227
def full_name
  tag_name_with_prefix(ITUNES_PREFIX)
end