I have an RSS feed from Zendesk (http://mysupport.zendesk.com/forums/some-path/posts.rss) that I need to render as content on a page on my web app. What is the preferred method to pull content in like this?
At the moment I’m starting to lean to the idea that perhaps my only option is to use Nokogiri or httparty. Is there a better way? Either way, would appreciate some directions to point my horse north.
ruby has an RSS Parser built in that you can use.. This code below will cache the results for you as well, and displays the latest 4 items.
And so each item could give you a
#titleand#link(and more, obviously, like#description)