[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Problem with gems

cypher.dp

6/21/2007 8:32:00 PM

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

3 Answers

chris.stearns

6/21/2007 8:34:00 PM

0

You may need to do this:

require 'rubygems'
before requiring your gem


MenTaLguY

6/21/2007 8:34:00 PM

0

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 ?

Did you require 'rubygems'?

-mental


cypher.dp

6/22/2007 10:56:00 AM

0

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
>
>
>
>