have_author?()
public
Returns true if there are any authors for the feed or any of the Entry child elements have an author
Show source
def have_author?
authors.any? {|author| !author.to_s.empty?} or
entries.any? {|entry| entry.have_author?(false)}
end