Feeds:
Posts
Comments

Archive for April 8th, 2011

Hai today when i was working with a rails project, when i gave bundle install ( after editing the Gemfile ), i received the following error

Error :

/usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/ui.rb:56: uninitialized constant Gem::SilentUI (NameError)
from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/cli.rb:16:in `initialize’
from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/vendor/thor.rb:246:in `new’
from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/vendor/thor.rb:246:in `dispatch’
from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/lib/bundler/vendor/thor/base.rb:389:in `start’
from /usr/lib/ruby/gems/1.8/gems/bundler-1.0.9/bin/bundle:13
from /usr/bin/bundle:19:in `load’
from /usr/bin/bundle:19

Inorder to get away from this error, just update the bundler by running the following command

sudo gem install bundler

Now bundle install will work 🙂

 

Read Full Post »