I'm not able to load rubygems in the preinitializer.rb file. I have the below gem env.

$which gem
/usr/bin/gem

$ gem env
RubyGems Environment:
  - RUBYGEMS VERSION: 1.3.7
  - RUBY VERSION: 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]
  - INSTALLATION DIRECTORY: /usr/lib/ruby/gems/1.8
  - RUBY EXECUTABLE: /usr/bin/ruby1.8
  - EXECUTABLE DIRECTORY: /usr/bin
  - RUBYGEMS PLATFORMS:
    - ruby
    - x86-linux
  - GEM PATHS:
     - /usr/lib/ruby/gems/1.8
     - /home/hemanth/.gem/ruby/1.8
  - GEM CONFIGURATION:
     - :update_sources => true
     - :verbose => true
     - :benchmark => false
     - :backtrace => false
     - :bulk_threshold => 1000
  - REMOTE SOURCES:
     - http://rubygems.org/

$ which ruby
/usr/local/bin/ruby

$ rails --version
Rails 2.3.11

The preinitializer.rb file where i'm not able to load the ruby gems

$head config/preinitializer.rb 
begin
  require "rubygems"
  puts Gem.path
  require "bundler"
#rescue LoadError
#  raise "Could not load the bundler gem. Install it with `gem install bundler`."
end

if Gem::Version.new(Bundler::VERSION) <= Gem::Version.new("0.9.24")
  raise RuntimeError, "Your bundler version is too old for Rails 2.3." +

When i try to run the console i get the following error:

 $ script/console 
 /config/../config/preinitializer.rb:2:in `require': no such file to load -- rubygems (LoadError)
from /config/../config/preinitializer.rb:2
from /config/boot.rb:28:in `load'
from /config/boot.rb:28:in `preinitialize'
from /config/boot.rb:10:in `boot!'
from /config/boot.rb:127
from script/console:2:in `require'
from script/console:2
link|improve this question

62% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.