Project

rss-feed

0.0
No commit activity in last 3 years
No release in over 3 years
This gem fetches RSS feed and allow new feed entry document creations with rake tasks.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0.0
>= 0
~> 1.8.3
>= 0
~> 3.12
~> 2.8.0

Runtime

 Project Readme

RSS Feed¶ ↑

Synopsis¶ ↑

Fetch RSS feeds, collect entries using Feedzirra gem and feed your database.

Installation¶ ↑

gem install rss-feed

Or put in your Gemfile:

gem "rss-feed"

Then (obviously) type bundle in your favorite command line interface.

You may encounter some issue when installing (I did). Some dependencies must be satisfied. On Ubuntu, the dependencies can be satisfied by installing the following packages:

sudo apt-get install libcurl3 libcurl3-gnutls libcurl4-openssl-dev

Please visit for extra information: github.com/taf2/curb

Usage¶ ↑

In your model:

class Article
  include Mongoid::Document
  include Rss::Feed

  # Add this line to set which RSS feed this model must subscribe to
  subscribes_to "https://news.google.fr/news/feeds?output=rss"
end

Your model get thus some methods:

# Get subscribed feed url
Article.feed_url # => "https://news.google.fr/news/feeds?output=rss"

# Get already loaded feed entries
Article.feed_entries # => [] # because the feed has not been loaded

# Load feed from feed_url
Article.get_feed
Article.feed_entries # => the collection of the feed entries

# (Re)load and store the feed entries as model documents
Article.update_from_feed

Rake task¶ ↑

A Rake task has been implemented to enable you automatically get new feed entries for every models that have subscribed to an RSS feed (i.e. Model.subscribes_to is present in your involved models). Simply do:

rake rss:feed:update

Contributing to RSS Feed¶ ↑

  • Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet.

  • Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it.

  • Fork the project.

  • Start a feature/bugfix branch.

  • Commit and push until you are happy with your contribution.

  • Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright © 2012 Sebastien Azimi. See LICENSE.txt for further details.