views:

31

answers:

1

i am getting error while truing to install watir

C:>gem install watir ERROR: http://rubygems.org/ does not appear to be a repository ERROR: Could not find a valid gem 'watir' (>= 0) in any repository

C:>gem -v 1.3.7

C:>ruby -v ruby 1.9.1p378 (2010-01-10 revision 26273) [i386-mingw32]

A: 

Try

gem sources -a http://gems.github.com

and then

gem install watir
katmoon