Constants
No documentation available
No documentation available
No documentation available
No documentation available
Instance Methods
lib/rss/maker/base.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rss/maker/base.rb, line 757
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
No documentation available
lib/rss/maker/base.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rss/maker/base.rb, line 734
def date=(_date)
@date = _parse_date_if_needed(_date)
end
No documentation available
#
lib/rss/maker/base.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rss/maker/base.rb, line 738
def pubDate
date
end
No documentation available
lib/rss/maker/base.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rss/maker/base.rb, line 742
def pubDate=(date)
self.date = date
end
No documentation available
#
lib/rss/maker/base.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rss/maker/base.rb, line 746
def updated
date
end
No documentation available
lib/rss/maker/base.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rss/maker/base.rb, line 750
def updated=(date)
self.date = date
end
No documentation available