In Files

  • rss/atom.rb

Parent

Methods

Included Modules

Class/Module Index [+]

Quicksearch

RSS::Atom::Feed::Entry::Source

Defines a Atom Source element. It has the following attributes:

  • author

  • category

  • categories

  • content

  • contributor

  • generator

  • icon

  • id

  • link

  • logo

  • rights

  • subtitle

  • title

  • updated

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

Public Instance Methods

have_author?() click to toggle source

Returns true if the Source element has an author.

 
               # File rss/atom.rb, line 832
def have_author?
  !author.to_s.empty?
end