Skip to content

Instantly share code, notes, and snippets.

@ardian
Created August 31, 2014 11:21
Show Gist options
  • Save ardian/ee5b9ad606ca6cde8b12 to your computer and use it in GitHub Desktop.
Save ardian/ee5b9ad606ca6cde8b12 to your computer and use it in GitHub Desktop.
Feedzirra
require 'feedzirra'
class TestfeedsController < ApplicationController
def index
feed_urls = ["http://feeds.feedburner.com/PaulDixExplainsNothing"]
feeds = Feedzirra::Feed.fetch_and_parse(feed_urls)
@entry = feeds.entries
end
end
<ul>
<%= @entry %>
<%@entry.each do |t|%>
<li>
<%= link_to "#{t.title}", "#{t.url}",:target => "_blank" %>
<%=t.author%>
<%=t.content%>
<%=t.published%>
<%=t.categories%>
</li>
<%end%>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment