From: Dale Date: 2007-01-25T17:17:51+09:00 Subject: Re: ruby and library paths Thanks for the advice Pit, but there still appears to be a path issue? Any other suggestions? Thanks. $ irb irb(main):001:0> require "fcgi" LoadError: no such file to load -- fcgi from (irb):1:in `require' from (irb):1 irb(main):002:0> require "fcgi.so" LoadError: no such file to load -- fcgi.so from (irb):2:in `require' from (irb):2 irb(main):003:0> Pit Capitain wrote: > You have to put quotes around fcgi, like > > require "fcgi" > > or > > require "fcgi.so" > > Otherwise Ruby tries to find a local variable or a method called fcgi, > and then you get the NameError you've shown.