In Files

  • rss/maker/base.rb
  • rss/maker/content.rb
  • rss/maker/dublincore.rb
  • rss/maker/image.rb
  • rss/maker/itunes.rb
  • rss/maker/slash.rb
  • rss/maker/taxonomy.rb
  • rss/maker/trackback.rb

Class/Module Index [+]

Quicksearch

RSS::Maker::ItemsBase::ItemBase

Public Instance Methods

<=>(other) click to toggle source
 
               # File rss/maker/base.rb, line 711
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
            
pubDate() click to toggle source
 
               # File rss/maker/base.rb, line 692
def pubDate
  date
end
            
pubDate=(date) click to toggle source
 
               # File rss/maker/base.rb, line 696
def pubDate=(date)
  self.date = date
end
            
updated() click to toggle source
 
               # File rss/maker/base.rb, line 700
def updated
  date
end
            
updated=(date) click to toggle source
 
               # File rss/maker/base.rb, line 704
def updated=(date)
  self.date = date
end