Class: Feedzirra::Parser::RSS

Inherits:
Object
  • Object
show all
Includes:
FeedUtilities, SAXMachine
Defined in:
lib/feedzirra/parser/rss.rb

Overview

Summary

Parser for dealing with RSS feeds.

Attributes

  • title

  • feed_url

  • url

  • entries

Constant Summary

Constants included from FeedUtilities

FeedUtilities::UPDATABLE_ATTRIBUTES

Instance Attribute Summary collapse

Attributes included from FeedUtilities

#etag, #last_modified, #new_entries, #updated

Class Method Summary collapse

Instance Method Summary collapse

Methods included from FeedUtilities

#has_new_entries?, #sanitize_entries!, #update_attribute, #update_from_feed, #updated?

Instance Attribute Details

#feed_urlObject

Returns the value of attribute feed_url.



23
24
25
# File 'lib/feedzirra/parser/rss.rb', line 23

def feed_url
  @feed_url
end

Class Method Details

.able_to_parse?(xml) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


29
30
31
# File 'lib/feedzirra/parser/rss.rb', line 29

def self.able_to_parse?(xml) #:nodoc:
  xml =~ /\<rss|\<rdf/
end

Instance Method Details

#descriptionObject



25
26
27
# File 'lib/feedzirra/parser/rss.rb', line 25

def description
    self.feed_description || self.subtitle
end