Problem with gems

Hello everybody !

I just installed some gem but when I want to use it Ruby comes up with
a "no such file to load" message. Has anyone an idea where gem
installs the packages ? Or what did I do wrong ?

Dominik

Did you require 'rubygems'?

-mental

···

On Fri, 22 Jun 2007 05:31:58 +0900, cypher.dp@gmail.com wrote:

I just installed some gem but when I want to use it Ruby comes up with
a "no such file to load" message. Has anyone an idea where gem
installs the packages ? Or what did I do wrong ?

You may need to do this:

require 'rubygems'
before requiring your gem

Okay, now it's working.
Thanks a lot for your help !

Dominik

···

2007/6/21, chris.stearns@gmail.com <chris.stearns@gmail.com>:

You may need to do this:

require 'rubygems'
before requiring your gem