From: Devin Mullins Date: 2006-12-03T05:48:42+09:00 Subject: Re: gem requires not working Steve Ross wrote: > The odd thing is that any requires *inside a Rails app* seem to find the > gems just fine. I assume that's because Rails munges the load paths. Actually it's because of config/boot.rb in your Rails app. Specifically: require 'rubygems' If your code was working before, and didn't need this, then it's possible that you had had RUBYOPT set. Devin