This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
No gems have been built for this project yet.
commit 6ed24f2abf39a2c8789eeea2e1627cd976323332
tree cc753140a035c0f527c2c7e3be8b0f2a00c317f7
parent 74e2ddced0a13fb179565751e2fbd9fd64025f12
tree cc753140a035c0f527c2c7e3be8b0f2a00c317f7
parent 74e2ddced0a13fb179565751e2fbd9fd64025f12
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Jul 09 09:40:23 -0700 2008 | [technomancy] |
| |
LICENSE | Sat Mar 24 09:34:45 -0700 2007 | [Jeff Hodges] |
| |
README | Wed Jul 09 09:40:23 -0700 2008 | [technomancy] |
| |
RUBY-TESTING | Thu May 08 15:39:16 -0700 2008 | [jmhodges] |
| |
Rakefile | Wed Jul 09 09:40:23 -0700 2008 | [technomancy] |
| |
doc/ | Wed Jul 09 09:40:23 -0700 2008 | [technomancy] |
| |
lib/ | Tue Jun 24 17:40:53 -0700 2008 | [technomancy] |
| |
tests/ | Tue Jun 24 15:12:53 -0700 2008 | [technomancy] |
README
= Universal Feed Parser http://rfeedparser.rubyforge.org Original Python code Copyright (c) 2002-5 by Mark Pilgrim Ruby port by Jeff Hodges. == Description Parse nearly any RSS and Atom feeds in Ruby. 3000 unit tests. Open source. == Installation For Debian-based systems: $ sudo apt-get install libxml-ruby1.8 # or libxml-parser-ruby1.8 And then: $ sudo gem install rfeedparser Or for the latest development version: $ git clone git://github.com/jmhodges/rfeedparser.git $ cd rfeedparser $ sudo rake setup $ rake gem $ sudo gem install pkg/rfeedparser-$VERSION.gem Dependencies on other gems are handled by rubygems, but rfeedparser works better if it has bindings to a native XML parsing library. The recommended choice is libxml, which is installable with the libxml-ruby1.8 package in Debian-based systems. But it can also use expat (the libxml-parser-ruby1.8 Debian package). In general libxml is more robust and up-to-date, so you should use it unless you have a specific reason to use expat. == Usage require 'rubygems' # may omit if installed manually require 'rfeedparser' feed = FeedParser.parse("some-feed-stream-filepath-or-url") feed.entries.each do |e| puts e.title puts e.content puts e.published puts '----' end == Contributing Clone the git repository at git://github.com/jmhodges/rfeedparser.git and which has a webpage at http://github.com/jmhodges/rfeedparser/tree/master. == Todo - Dependency installation instructions for other platforms. - Use hoe. - Publish RDoc; unify README and rubyforge home page.




