Class: RSS::Maker::ItemsBase::ItemBase
- Includes:
- ContentModel, DublinCoreModel, RSS::Maker::ITunesItemModel, RSS::Maker::ImageItemModel, SetupDefaultDate, SlashModel, TaxonomyTopicsModel, TrackBackModel
- Defined in:
- lib/rss/maker/base.rb,
lib/rss/maker/image.rb,
lib/rss/maker/slash.rb,
lib/rss/maker/itunes.rb,
lib/rss/maker/content.rb,
lib/rss/maker/taxonomy.rb,
lib/rss/maker/trackback.rb,
lib/rss/maker/dublincore.rb
Defined Under Namespace
Classes: ContentBase, DescriptionBase, EnclosureBase, GuidBase, ITunesDuration, RightsBase, SourceBase, TitleBase
Constant Summary collapse
- CategoriesBase =
ChannelBase::CategoriesBase
- AuthorsBase =
ChannelBase::AuthorsBase
- LinksBase =
ChannelBase::LinksBase
- ContributorsBase =
ChannelBase::ContributorsBase
Constants inherited from Base
Base::NEED_INITIALIZE_VARIABLES, Base::OTHER_ELEMENTS
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #<=>(other) ⇒ Object
- #date=(_date) ⇒ Object
- #pubDate ⇒ Object
- #pubDate=(date) ⇒ Object
- #updated ⇒ Object
- #updated=(date) ⇒ Object
Methods included from DublinCoreModel
append_features, install_dublin_core
Methods included from TrackBackModel
Methods included from TaxonomyTopicsModel
append_features, install_taxo_topics
Methods included from ContentModel
Methods included from RSS::Maker::ITunesItemModel
Methods included from RSS::Maker::ITunesBaseModel
#def_class_accessor, #def_csv_accessor, #def_elements_class_accessor, #def_yes_clean_other_accessor, #def_yes_other_accessor
Methods included from SlashModel
Methods included from RSS::Maker::ImageItemModel
append_features, install_image_item
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, #have_required_values?, 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 Method Details
#<=>(other) ⇒ Object
756 757 758 759 760 761 762 763 764 765 766 767 768 |
# File 'lib/rss/maker/base.rb', line 756 def <=>(other) _date = date || dc_date _other_date = other.date || other.dc_date if _date and _other_date _date <=> _other_date elsif _date 1 elsif _other_date -1 else 0 end end |
#date=(_date) ⇒ Object
733 734 735 |
# File 'lib/rss/maker/base.rb', line 733 def date=(_date) @date = _parse_date_if_needed(_date) end |
#pubDate ⇒ Object
737 738 739 |
# File 'lib/rss/maker/base.rb', line 737 def pubDate date end |
#pubDate=(date) ⇒ Object
741 742 743 |
# File 'lib/rss/maker/base.rb', line 741 def pubDate=(date) self.date = date end |
#updated ⇒ Object
745 746 747 |
# File 'lib/rss/maker/base.rb', line 745 def updated date end |
#updated=(date) ⇒ Object
749 750 751 |
# File 'lib/rss/maker/base.rb', line 749 def updated=(date) self.date = date end |