Skip to content

Instantly share code, notes, and snippets.

@mrcasals
Created February 15, 2014 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrcasals/9023960 to your computer and use it in GitHub Desktop.
Save mrcasals/9023960 to your computer and use it in GitHub Desktop.
Parse GitHub RSS feed and show only latest starred projects
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