class RSS::ITunesChannelModel::ITunesCategory

Constants

ITunesCategory

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File rss-0.2.9/lib/rss/itunes.rb, line 111
def initialize(*args)
  if Utils.element_initialize_arguments?(args)
    super
  else
    super()
    self.text = args[0]
  end
end
required_prefix() click to toggle source
# File rss-0.2.9/lib/rss/itunes.rb, line 91
def required_prefix
  ITUNES_PREFIX
end
required_uri() click to toggle source
# File rss-0.2.9/lib/rss/itunes.rb, line 95
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 120
def full_name
  tag_name_with_prefix(ITUNES_PREFIX)
end