up vote 2 down vote favorite
share [g+] share [fb]

What's a good solution to parse an RSS/ATOM feed and present the content in a Rails view?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

I've seen good notes on the parsing part at http://www.robbyonrails.com/articles/2005/05/11/parsing-a-rss-feed (and links therefrom). How to best present things once you have parsed them is maybe a bit of a subjective issue...

link|improve this answer
feedback

One of the recent Railscasts (6/29/2009) recommended Feedzirra

link|improve this answer
Feedzirra is the best. – Shripad K Apr 18 '10 at 10:55
feedback

id recommend acts_as_feed, which takes care of parsing automatically acts as feed rails plugin and can be added to models. Another solution would be to use google feed api as long as you only need to display the feed.

#HAML view example
- if feed.filled?
  %h2="Blog: #{feed.title}"
  - for item in feed.entries[0...5]
    -date = item.published_at.to_date.to_s(:long)

    %h2=link_to(h(item.title),h(item.url))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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