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

On Fri, 22 Jun 2007 05:31:58 +0900, [email protected] 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 ?

Did you require ‘rubygems’?

-mental

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, [email protected] [email protected]: