Class: RSS::Maker::ITunesChannelModel::ITunesCategoriesBase::ITunesCategoryBase
Constant Summary
Constant Summary
Constants inherited from Base
Base::NEED_INITIALIZE_VARIABLES, Base::OTHER_ELEMENTS
Instance Attribute Summary (collapse)
-
- (Object) text
Returns the value of attribute text.
Attributes inherited from Base
Instance Method Summary (collapse)
- - (Boolean) have_required_values?
- - (Object) to_feed(feed, current)
- - (Object) to_feed_for_categories
Methods inherited from Base
add_need_initialize_variable, add_other_element, def_array_element, def_classed_element, def_classed_element_without_accessor, def_classed_elements, def_csv_element, def_other_element, def_other_element_without_accessor, inherited, inherited_base, #initialize, need_initialize_variables, other_elements, #variable_is_set?
Methods included from Utils::InheritedReader
#inherited_array_reader, #inherited_hash_reader, #inherited_reader
Constructor Details
This class inherits a constructor from RSS::Maker::Base
Instance Attribute Details
- (Object) text
Returns the value of attribute text
98 99 100 |
# File 'lib/rss/maker/itunes.rb', line 98 def text @text end |
Instance Method Details
- (Boolean) have_required_values?
103 104 105 |
# File 'lib/rss/maker/itunes.rb', line 103 def have_required_values? text end |
- (Object) to_feed(feed, current)
108 109 110 111 112 113 114 |
# File 'lib/rss/maker/itunes.rb', line 108 def to_feed(feed, current) if text and current.respond_to?(:itunes_category) new_item = current.class::ITunesCategory.new(text) to_feed_for_categories(feed, new_item) current.itunes_categories << new_item end end |
- (Object) to_feed_for_categories
107 |
# File 'lib/rss/maker/itunes.rb', line 107 alias_method :to_feed_for_categories, :to_feed |