Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cibernox/rubytapas_downloader
Simple ruby script that downloads the latest rubytapas episodes.
https://github.com/cibernox/rubytapas_downloader
Last synced: about 2 months ago
JSON representation
Simple ruby script that downloads the latest rubytapas episodes.
- Host: GitHub
- URL: https://github.com/cibernox/rubytapas_downloader
- Owner: cibernox
- Created: 2013-05-03T23:57:14.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-02-10T21:46:25.000Z (almost 9 years ago)
- Last Synced: 2024-10-18T07:57:55.015Z (3 months ago)
- Language: Ruby
- Size: 6.84 KB
- Stars: 26
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Rubytapas downloader
This is a small script for download all the awesome rubytapas episodes.
For those of you who doesn't know [Ruby Tapas](http://www.rubytapas.com/), it is a series of short
screencasts about ruby by [Avdi Grimm](http://devblog.avdi.org/).You have to be subscribed in order to download the episodes. It's 9$/month, but it's worth the money.
You need to have installed ruby >= 1.9, `httparty` and `nokogiri` gems and the `curl` command.
The script will default to download the files into the current directory. You may also pass a directory as an option to the script. For example:
```text
$> ruby rubytapas_downloader.rb ~/Download/RubyTapas
```The script will load your credentials via the environment variables `RTAPAS_USERNAME` and `RTAPAS_PASSWORD`. You may also set your email and password in the constants on the top of the script before you run it.
You may also load this file via a console:
```text
$> irb -I. -r rubytapas_downloader.rbirb(main):001:0> RubytapasDownloader.new.launch
```This blog post may help you to understand how it works: [Rubytapas.com Downloader. How to Download Files From Https With Authentication](http://miguelcamba.com/blog/2013/05/04/rubytapas-dot-com-downloader-how-to-download-files-from-https-with-authentication/)