vote up 5 vote down star
4

I'm looking for something that will let me parse Atom and RSS in Ruby and Rails. I've looked at the standard RSS library, but is there one library that will auto-detect whatever type of feed it is and parse it for me?

flag

5 Answers

vote up 5 vote down check

If you meet crappy feeds, you may want to use HPricot to parse the feed.

link|flag
Hpricot = good times. Thanks! – aronchick May 20 at 18:14
Did you settle on Hpricot, I tried this and had a could not get all the information out of a feed. It did fair better than Nokogiri which could not handle malformed feeds. – Kris Sep 3 at 8:38
Well one time or two, Hpricot could not handle some very broken feed but apart from that all the time it's working fine for me. I'm using it for learnivore.com for instance. – Thibaut Barrère Sep 15 at 15:03
vote up 7 vote down

Googleage reveals some things. Were they not acceptable?

Simple RSS
Ruby-Feedparser

require 'simple-rss'
require 'open-uri'
rss = SimpleRSS.parse open('http://slashdot.org/index.rdf')
rss.channel.title # => "Slashdot"
link|flag
Simple-RSS looked good, but it hasn't been updated in 2 years. Feedparser also looked pretty good but it appears there's no gem and it's an 0.6. I was hoping there'd be something a bit more mature that's generally the standard. – aronchick Oct 19 '08 at 4:17
I know how you feel about wanting to use active projects, but if the RSS and RDF specs haven't changed much lately, perhaps these would do the trick. :) – Pistos Oct 19 '08 at 5:23
i'll give it a shot with Simple RSS - but it really surprises me that there's not a better solution out there - given how web 2.0-y Ruby/Rails and RSS are you'd think there'd be a nice package combining them. – aronchick Oct 20 '08 at 3:26
It's quite possible there is a rails-specific solution. I haven't googled for it, though. – Pistos Oct 20 '08 at 11:13
vote up 1 vote down

Feed Normalizer looks like it may be a good option

http://rubyforge.org/projects/feed-normalizer/

link|flag
vote up 0 vote down

Feedzirra is one of the better options: http://www.pauldix.net/2009/02/feedzirra-a-ruby-feed-library-built-for-speed.html

Of course, I'm biased since I wrote it. :)

link|flag
vote up 0 vote down

I like using niokrigi or scrapi for parsing the xml in the atom/rss feeds. http://www.rubyinside.com/nokogiri-ruby-html-parser-and-xml-parser-1288.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.