class FeedUtils::Item
Attributes
content[RW]
content_type[RW]
guid[RW]
published[RW]
summary[RW]
summary_type[RW]
title[RW]
attr_accessor :object # not used for now – orginal object (e.g RSS item or ATOM entry etc.)
title_type[RW]
updated[RW]
url[RW]
Public Instance Methods
content?()
click to toggle source
# File lib/feedutils/item.rb, line 11 def content?() @content.nil? == false; end
published?()
click to toggle source
todo: add summary (alias description) ??? todo: add author/authors todo: add category/categories
# File lib/feedutils/item.rb, line 23 def published?() @published.nil? == false; end
summary?()
click to toggle source
# File lib/feedutils/item.rb, line 15 def summary?() @summary.nil? == false; end
updated?()
click to toggle source
# File lib/feedutils/item.rb, line 26 def updated?() @updated.nil? == false; end