Defines a child Atom Entry element for an Atom Feed

Namespace
Methods
H
Included Modules
Constants
Author = Feed::Author
 
Category = Feed::Category
 
Contributor = Feed::Contributor
 
Id = Feed::Id
 
Link = Feed::Link
 
Rights = Feed::Rights
 
Title = Feed::Title
 
Updated = Feed::Updated
 
Instance Public methods
have_author?(check_parent=true)

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 lib/rss/atom.rb, line 496
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