[Rails] Re: how do i use a newly installed gem?

2008-09-10 Thread dino d.
SOLVED! The problem was that since the installer failed, I had to install without dependencies. Apparently, I forgot to manually install fastercsv, but instead of throwing a message like 'no fastercsv,' it said 'no such file to load.' Thanks for your help guys. dino On Sep 9, 5:36 pm, "dino d.

[Rails] Re: how do i use a newly installed gem?

2008-09-09 Thread dino d.
no, i'm running rails 2.0.2 thanks for your help so far. On Sep 9, 5:28 pm, Robert Walker <[EMAIL PROTECTED]> wrote: > Is this is Rails 2.1? > > If so did you look at the comments pertaining to gems in > config/environment.rb? > > Example: > config.gem "hpricot", :version => '0.6', :source => >

[Rails] Re: how do i use a newly installed gem?

2008-09-09 Thread Robert Walker
> If so did you look at the comments pertaining to gems in > config/environment.rb? Or optionally you may consider "vendoring" the gem. See: http://errtheblog.com/posts/50-vendor-everything Robert Walker wrote: -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---

[Rails] Re: how do i use a newly installed gem?

2008-09-09 Thread Robert Walker
Is this is Rails 2.1? If so did you look at the comments pertaining to gems in config/environment.rb? Example: config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"; dino d. wrote: > I didn't originally, but now I did. I added: > > require 'blackbook' > > a

[Rails] Re: how do i use a newly installed gem?

2008-09-09 Thread dino d.
I didn't originally, but now I did. I added: require 'blackbook' and now, I get no such file to load -- blackbook I've checked and blackbook.rb is installed here: C:\ruby\lib\ruby\gems\1.8\gems\blackbook-1.0.4\lib i don't have any idea how ruby looks for gems or where. this error tells me

[Rails] Re: how do i use a newly installed gem?

2008-09-09 Thread John Yerhot
Did you require the gem? On Sep 9, 3:37 pm, "dino d." <[EMAIL PROTECTED]> wrote: > Hi - I wanted to try out the Blackbook gem: > > http://contentfree.rubyforge.org/blackbook/ > > So I did > > gem install blackbook > > and I kept getting failures installing, and finally I used the -- > ignore-depe