have_author?()
public
Returns true if there are any authors for the feed or any of the Entry child elements have an author
# File lib/rss/atom.rb, line 323
def have_author?
authors.any? {|author| !author.to_s.empty?} or
entries.any? {|entry| entry.have_author?(false)}
end