Skip to content

Instantly share code, notes, and snippets.

View gberger's full-sized avatar

Guilherme Berger gberger

View GitHub Profile
@gberger
gberger / railscasts-download.rb
Last active December 15, 2015 15:19 — forked from samqiu/railscasts.rb
Download Railscasts episodes on Windows!This will download all missing free Railscasts episodes onto the folder where the script is.If you are a Pro subscriber, you can just sub in your Pro RSS feed and have it download Pro episodes too.
require 'rss'
require 'open-uri'
p "Downloading rss index"
# If you are a Railscasts Pro subscriber, you will have a different RSS feed with Pro casts
# If this is the case, go to http://railscasts.com/, find it and sub it below
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