Namespace
Methods
#
D
P
U
Included Modules
Constants
CategoriesBase = ChannelBase::CategoriesBase
 
AuthorsBase = ChannelBase::AuthorsBase
 
LinksBase = ChannelBase::LinksBase
 
ContributorsBase = ChannelBase::ContributorsBase
 
Instance Public methods
<=>(other)
# 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)
# File lib/rss/maker/base.rb, line 733
def date=(_date)
  @date = _parse_date_if_needed(_date)
end
pubDate()
# File lib/rss/maker/base.rb, line 737
def pubDate
  date
end
pubDate=(date)
# File lib/rss/maker/base.rb, line 741
def pubDate=(date)
  self.date = date
end
updated()
# File lib/rss/maker/base.rb, line 745
def updated
  date
end
updated=(date)
# File lib/rss/maker/base.rb, line 749
def updated=(date)
  self.date = date
end