public
Description: rFeedParser is a translation of the Universal Feed Parser from Python into Ruby. It has nearly the exact same behavior.
Homepage: http://rfeedparser.rubyforge.org
Clone URL: git://github.com/jmhodges/rfeedparser.git
name age message
file LICENSE Sat Mar 24 09:34:45 -0700 2007 using the rchardet gem not that it has a projec... [Jeff Hodges]
file README Loading commit data...
file RUBY-TESTING
file Rakefile
directory doc/
directory lib/
directory tests/
README
Universal Feed Parser
Parse RSS and Atom feeds in Python translated to Ruby.  3000 unit tests.  Open source.

Copyright (c) 2002-5 by Mark Pilgrim
open source, see LICENSE file for details

See <http://rfeedparser.rubyforge.org> and
<http://github.com/jmhodges/rfeedparser/tree/master>.
-----

To use:
  If installed as a gem
    require 'rubygems'
    require 'rfeedparser'

    pf = FeedParser.parse("some-feed-stream-filepath-or-url")

  If not installed as a gem, copy the contents of lib into the your directory:
  
    require 'rfeedparser'

    pf = FeedParser.parse("some-feed-filepath-stream-or-url")
     
----

To help out:
  Clone the git repository at <git://github.com/jmhodges/rfeedparser.git> and
  which has a webpage at <http://github.com/jmhodges/rfeedparser/tree/master>.