Fetch rss feeds in Rails
This simple article will show you how to fetch rss feeds in your rails application. Lesscode.se
Made a library? Written a blog post? Found a useful tutorial? Share it with the Ruby community here or just enjoy what everyone else has found!
This simple article will show you how to fetch rss feeds in your rails application. Lesscode.se
Comments
Nice, but you don’t need to install a gem to parse RSS. Just use the standard libraries…
require 'rss/1.0' require 'rss/2.0'It’s very simple to parse the output. Here’s a post I wrote on combining RSS feeds.
Post a comment