我正在寻找能让我在Ruby和Rails中解析Atom和RSS的东西.我看过标准的RSS库,但是有一个库可以自动检测它是什么类型的Feed并为我解析它吗?
Feedzirra是更好的选择之一:http://www.pauldix.net/2009/02/feedzirra-a-ruby-feed-library-built-for-speed.html
当然,自从我写这篇文章以后,我就有了偏见.:)
Google将揭示一些事情.他们不被接受吗?
简单的RSS
Ruby-Feedparser
require 'simple-rss' require 'open-uri' rss = SimpleRSS.parse open('http://slashdot.org/index.rdf') rss.channel.title # => "Slashdot"
如果遇到糟糕的Feed,您可能需要使用HPricot来解析Feed.