Reputation: 251
I have some troubles with a Ruby gem named Bundler. My OS is Ubuntu 10.04.
My environment is as follows:
$ gem env
RubyGems Environment:
- RUBYGEMS VERSION: 1.3.6
- RUBY VERSION: 1.9.1 (2010-01-10 patchlevel 378) [i486-linux]
- INSTALLATION DIRECTORY: /usr/lib/ruby1.9.1/gems/1.9.1
- RUBY EXECUTABLE: /usr/bin/ruby1.9.1
- EXECUTABLE DIRECTORY: /usr/bin
- RUBYGEMS PLATFORMS:
- ruby
- x86-linux
- GEM PATHS:
- /usr/lib/ruby1.9.1/gems/1.9.1
- /home/mo/.gem/ruby/1.9.1
- GEM CONFIGURATION:
- :update_sources => true
- :verbose => true
- :benchmark => false
- :backtrace => false
- :bulk_threshold => 1000
- REMOTE SOURCES:
- http://rubygems.org/
$ cat /proc/version
Linux version 2.6.32-21-generic (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #32-Ubuntu SMP Fri Apr 16 08:10:02 UTC 2010
$ ruby -v
ruby 1.9.1p378 (2010-01-10 revision 26273) [i486-linux]
$ gem -v
1.3.6
My local gems are:
And here is my error:
$ irb1.9.1 -rubygems
irb(main):001:0> require "bundler"
LoadError: no such file to load -- bundler
from (irb):1:in `require'
from (irb):1
from /usr/bin/irb1.9.1:12:in `<main>'
I got the same error when I try to start Rails 3:
$ rails start
/home/mo/quick_test_2/config/boot.rb:4:in `require': no such file to load -- bundler (LoadError)
from /home/mo/quick_test_2/config/boot.rb:4:in `<top (required)>'
from script/rails:8:in `require'
from script/rails:8:in `<main>'
More information about my version of Bundler:
$ gem list -d bundler
*** LOCAL GEMS ***
bundler (0.9.24)
Authors: Carl Lerche, Yehuda Katz, André Arko
Rubyforge: http://rubyforge.org/projects/bundler
Homepage: http://github.com/carlhuda/bundler
Installed at: /usr/lib/ruby1.9.1/gems/1.9.1
The best way to manage your application's dependencies
Why do I get the error?
Upvotes: 1
Views: 3441
Reputation: 251
Wow! I don't really understand why, but new it's just fixed! The magic command:
cp -r /usr/lib/ruby1.9.1/gems/1.9.1/gems/bundler-0.9.24/ /home/mo/.gem/ruby/1.9.1/gems/
Upvotes: 0