Instantly share code, notes, and snippets.
keating /gist:2881867
CreatedJune 6, 2012 13:30 — forked fromsamqiu/railscasts.rb
download railscast video This file contains hidden or 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
#!/usr/bin/ruby | |
require'rss' | |
p'Downloading rss index' | |
rss_string=open('http://feeds.feedburner.com/railscasts').read | |
rss=RSS::Parser.parse(rss_string,false) | |
videos_urls=rss.items.map{ |it|it.enclosure.url}.reverse | |
videos_filenames=videos_urls.map{|url|url.split('/').last} |