View Single Post
  #11  
Old 04-06-2012, 05:08 AM
evol evol is offline
Senior Member
 
Join Date: Jun 2011
Posts: 228
evol is on a distinguished road
Thumbs up

Re: Hulu download script


Thanks got it working

What i did..........

1. Downloaded Ruby 1.9.3-p125

2. Downloaded RubyInstaller DevKit

3. Setup DevKit..........

a) Extracted the DevKit.7z to C:\DevKit
b) From CMD Prompt > cd C:\DevKit
Code:
ruby dk.rb init
Code:
ruby dk.rb install
c) Test DevKit is working
Code:
gem install rdiscount --platform=ruby
d) Test that gem is working
Code:
ruby -rubygems -e "require 'rdiscount'; puts RDiscount.new('**Hello RubyInstaller**').to_html"
4. Update to the latest RubyGems version
Code:
gem update --system
5. Install nokogiri gem
Code:
gem install nokogiri
6. Finished run hulu.rb

Reply With Quote