Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

using mechanize and got the uninitialized constant Object::WWW (NameError)

Tags:

ruby

mechanize

I'm using mechanize in windows 7 x64 OS, but got the the uninitialized constant Object::WWW (NameError),

the code is very simple:

require 'rubygems'
require 'mechanize'
agent = WWW::Mechanize.new

error occurs at the line agent = WWW::Mechanize.new

any help is appreciated!

like image 770
aaron Avatar asked Jan 14 '12 05:01

aaron


1 Answers

remove the WWW:: - that got removed a long time ago.

like image 152
pguardiario Avatar answered Sep 28 '22 17:09

pguardiario