Class: RSS::ITunesChannelModel::ITunesCategory
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
Inherits: |
RSS::Element
|
Defined in: | lib/rss/itunes.rb |
Constant Summary
-
ITunesCategory =
# File 'lib/rss/itunes.rb', line 108self
::RSS::Element
- Inherited
GET_ATTRIBUTES, HAVE_CHILDREN_ELEMENTS, INDENT, MODELS, MUST_CALL_VALIDATORS, NEED_INITIALIZE_VARIABLES, PLURAL_FORMS, TO_ELEMENT_METHODS
::RSS::RSS09
- Included
Class Attribute Summary
::RSS::Element
- Inherited
Class Method Summary
::RSS::Element
- Inherited
::RSS::Utils::InheritedReader
- Extended
::RSS::BaseModel
- Extended
::RSS::Utils
- Included
element_initialize_arguments? | This method is used inside of several different objects to determine if special behavior is needed in the constructor. |
get_file_and_line_from_caller | Returns an array of two elements: the filename where the calling method is located, and the line number where it is defined. |
new_with_value_if_need | If |
to_class_name | Given a |
Instance Attribute Summary
::RSS::Element
- Inherited
Instance Method Summary
- #full_name
- #maker_target(categories) private
- #setup_maker_attributes(category) private
- #setup_maker_elements(category) private
::RSS::Element
- Inherited
::RSS::SetupMaker
- Included
Constructor Details
.new(*args) ⇒ ITunesCategory
# File 'lib/rss/itunes.rb', line 113
def initialize(*args) if Utils.element_initialize_arguments?(args) super else super() self.text = args[0] end end
Class Method Details
.required_prefix
[ GitHub ]# File 'lib/rss/itunes.rb', line 93
def required_prefix ITUNES_PREFIX end
.required_uri
[ GitHub ]# File 'lib/rss/itunes.rb', line 97
def required_uri ITUNES_URI end
Instance Method Details
#full_name
[ GitHub ]# File 'lib/rss/itunes.rb', line 122
def full_name tag_name_with_prefix(ITUNES_PREFIX) end
#maker_target(categories) (private)
[ GitHub ]# File 'lib/rss/itunes.rb', line 127
def maker_target(categories) if text or !itunes_categories.empty? categories.new_category else nil end end
#setup_maker_attributes(category) (private)
[ GitHub ]# File 'lib/rss/itunes.rb', line 135
def setup_maker_attributes(category) category.text = text if text end
#setup_maker_elements(category) (private)
[ GitHub ]# File 'lib/rss/itunes.rb', line 139
def setup_maker_elements(category) super(category) itunes_categories.each do |sub_category| sub_category.setup_maker(category) end end