2010-05-03 7 views
1

J'ai quelques problèmes avec une gemme Ruby nommée Bundler. Mon système d'exploitation est Ubuntu 10.04.Ruby gem error: pas de fichier à charger - bundler

Mon environnement est la suivante:

$ 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 ([email protected]) (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

Mes gemmes locales sont:

  • abstrait (1.0.0)
  • actionmailer (3.0.0.beta3)
  • actionpack (3.0.0.beta3)
  • ActiveModel (3.0.0.beta3)
  • activerecord (3.0.0. beta3)
  • ActiveResource (3.0.0.beta3)
  • activesupport (3.0.0.beta3)
  • arel (0.3.3)
  • générateur
  • (2.1.2)
  • Bundl er (0.9.24)
  • erubis (2.6.5)
  • i18n (0.3.7)
  • mail (2.2.0)
  • memcache-client (1.8.3)
  • mime-types (1,16)
  • polyglot (0.3.1)
  • crémaillère
  • (1.1.0)
  • montage en rack (0.6.3)
  • rack essai (0.5.3)
  • rails (3.0.0.beta3)
  • railties (3.0.0.beta3)
  • râteau (0.8.7)
  • format texte (1.0.0)
  • texte-tiret (1.0.0)
  • thor (0.13.6)
  • TreeTop (1.4.5)
  • tzinfo (0.3.20)

Et voici mon erreur:

$ 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>' 

j'ai eu la même erreur lorsque je tente de démarrer 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>' 

Plus d'informations sur ma version de 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 

Pourquoi ai-je l'erreur?

Répondre

0

Wow! Je ne comprends pas vraiment pourquoi, mais c'est nouveau! La commande magique:

cp -r /usr/lib/ruby1.9.1/gems/1.9.1/gems/bundler-0.9.24/ /home/mo/.gem/ruby/1.9.1/gems/ 
+0

pouvez marquer votre réponse comme la solution? –

Questions connexes