→ Shoes gem problem? → → →

Once I was trying to use mechanize with Shoes, and all I was getting was a problem with missing mechanize gem. Solution turns out to be pretty simple: You have to install gem in Shoes. To do it, just place this section at the beginning of shoes application:

Shoes.setup do
  gem 'mechanize'
end

require 'mechanize'

Shoes.setup block will be responsible for installing all gems required for your application. It's pretty cool!

Created on 15 May 2009