Created
February 15, 2014 19:21
-
-
Save mrcasals/9023960 to your computer and use it in GitHub Desktop.
Parse GitHub RSS feed and show only latest starred projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rss' | |
rss_url = 'https://github.com/mrcasals.atom' | |
response = RSS::Parser.parse(open(rss_url).read) | |
response.entries.each do |entry| | |
p entry.link.href if entry.title.content =~ /starred/ | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment