In Files

  • rss/atom.rb
  • rss/dublincore/atom.rb

Class/Module Index [+]

Quicksearch

RSS::Atom::Feed::Entry

Defines a child Atom Entry element of an Atom Feed element. It has the following attributes:

  • author

  • category

  • categories

  • content

  • contributor

  • id

  • link

  • published

  • rights

  • source

  • summary

  • title

  • updated

Reference: validator.w3.org/feed/docs/rfc4287.html#element.entry

Public Instance Methods

have_author?(check_parent=true) click to toggle source

Returns whether any of the following are true:

  • There are any authors in the feed

  • If the parent element has an author and the check_parent parameter was given.

  • There is a source element that has an author

 
               # File rss/atom.rb, line 573
def have_author?(check_parent=true)
  authors.any? {|author| !author.to_s.empty?} or
    (check_parent and @parent and @parent.have_author?) or
    (source and source.have_author?)
end