[Rails] Re: Activity streams/News feeds with Aggregation, MySQL and Redis support

2014-05-30 Thread Thierry Schellenbach
Hi guys, I'm one of the authors of Feedly (python). So it does sound exactly like what you're looking for but in the wrong language :) The same team behind Feedly is also offering a hosted solution now called getstream.io Have a look at the getting started, https://getstream.io/get_started/ We

[Rails] Re: Activity streams/News feeds with Aggregation, MySQL and Redis support

2014-03-25 Thread James Davis, PhD
http://railscasts.com/episodes/406-public-activity Is this what you want to accomplish? He uses the public activity gem. -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe from this group and stop receiving emails from it,

[Rails] Re: Activity streams/News feeds with Aggregation, MySQL and Redis support

2014-03-23 Thread Kenny Meyer
Unfortunately you missed the point. I wasn't referring to RSS feeds. I mean activity feeds as in Facebook, Etsy, etc. On Friday, March 21, 2014 7:22:30 PM UTC-3, Rick wrote: require 'simple-rss' require 'open-uri' @health_and_science = SimpleRSS.parse open(

[Rails] Re: Activity streams/News feeds with Aggregation, MySQL and Redis support

2014-03-21 Thread Kenny Meyer
Can anyone recommend a gem/library? On Friday, March 21, 2014 2:38:45 PM UTC-3, Kenny Meyer wrote: I need to implement an activity feed for a Rails application with the following features: - Needs to work with MySQL database - Needs to support aggregations for similar feed stories (like

[Rails] Re: Activity streams/News feeds with Aggregation, MySQL and Redis support

2014-03-21 Thread Rick
require 'simple-rss' require 'open-uri' @health_and_science = SimpleRSS.parse open(http://www.npr.org/rss/rss.php?id=1007;) @health_and_science.entries.each do |f| printf(NPR Feed: %s %s\n, f.pubDate.to_date, f.title) end On Friday, March 21, 2014 1:39:17 PM UTC-4, Kenny Meyer wrote: Can