Iain Barnett wrote:
> Is there somewhere I can just add the path hardcoded?
At the top of your app you could do
$LOAD_PATH.unshift ENV['GEM_HOME'] unless $LOAD_PATH.include?
ENV['GEM_HOME']
for a nasty workaround.
As for how $LOAD_PATH is built: well, it's in ruby.c (look for incpush
and push_include), but the bits you're looking at are probably added by
rubygems.
--
Posted via http://www.ruby-forum.com/.