rubyshoes

no such file to load -- mechanize


Code:

Shoes.setup do
  gem 'mechanize'
end

require 'rubygems'
require 'mechanize'

Running Shoes on it says:

no such file to load -- mechanize

Solution

  • I did:

    sudo gem install mechanize
    

    and the following seems to be working:

    Shoes.setup do
      gem 'mechanize'
    end
    
    require 'mechanize'
    

    It says 'Building native extensions' and is taking forever, but seems to be the norm according to hackety.org.