Ruby Forum Ruby > Error while running ruby script

Posted by Harry Pat (harryp)
on 15.05.2008 00:21
Hi,

I am new user of ruby and wrote simple script. After installing Ruby for
Windows, i wrote simple script


require 'watir'
include Watir
goto_site = 'http://www.yahoo.com'
ie = IE.new
ie.goto(goto_site)

when I run above script and I am getting following error message, how to
resolved this one?

E:/Ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_re
quire': no such file to load -- rio (LoadError)
        from
E:/Ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `re
quire'
Posted by Axel Etzold (Guest)
on 15.05.2008 01:00
(Received via mailing list)
-------- Original-Nachricht --------
> Datum: Thu, 15 May 2008 07:21:47 +0900
> Von: Harry Pat <hp13nov@hotmail.com>
> An: ruby-talk@ruby-lang.org
> Betreff: Error while running ruby script

> ie.goto(goto_site)
> -- 
> Posted via http://www.ruby-forum.com/.

Hello Harry,

welcome to Ruby. You'll like it :)
The error you're getting is due to the fact that your system cannot
find a Ruby software "package" (called a "gem" in Ruby) -- rio

http://rio.rubyforge.org/

which is used as a facade for input/output.

To use an installed gem in a script, you need to write

require "rubygems"
require NAME_OF_YOUR_GEM

in your script.
So simply add that require "rubygems" line to your script and see
what happens.
If the rio gem is installed, it'll work.
Otherwise, you'll need to install it using

gem install rio .


Best regards,

Axel
Posted by Harry Pat (harryp)
on 15.05.2008 23:45
Thanks Axel it works.

Harry P.