Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I installed all of my gems using bundler via the Gemfile. I thought (mistakenly) that if I deleted a gem from my Gemfile and ran 'bundle install' that the deleted gems would be uninstalled. I've looked at the bundler help file and, so far as I can tell, it does not have a way to uninstall gems.

Do I just use gem uninstall x for everything? Is this going to confuse bundler?

share|improve this question

3 Answers

up vote 47 down vote accepted

Bundler is launched from your app's root directory so it makes sure all needed gems are present to get your app working.If for some reason you no longer need a gem you'll have to run the

    gem uninstall gem_name 

as you stated above.So every time you run bundler it'll recheck dependencies

share|improve this answer

This will uninstall a gem installed by bundler:

bundle exec gem uninstall GEM_NAME

Note that this throws

ERROR: While executing gem ... (NoMethodError) undefined method `delete' for #<Bundler::SpecSet:0x00000101142268>

but the gem is actually removed. Next time you run bundle install the gem will be reinstalled.

share|improve this answer
7  
For RVM users: you have to use this method if you've set up a gemset for your particular project. Running gem uninstall pg from the project folder will uninstall pg from your global/system level gemset instead of bundler's – Eric Hu Jan 17 '12 at 2:14
Is this the error you're referring to? ERROR: While executing gem ... (NoMethodError) undefined method `delete' for #<Bundler::SpecSet:0x00000101142268> – user664833 Feb 29 '12 at 0:53
1  
That is the error. – phatmann Feb 29 '12 at 15:32
+1 for doing it in bundle context. wish it didn't throw that error! better yet, wish i could bundle -f update gemname. – pduey Jul 6 '12 at 20:06
@EricHu not if you are using the RVM gemset. whenever you install a gem with gem install xxx inside a RVM gemset, there is where it stays, so doing a plain gem uninstall xxx on a RVM gemset will remove the gem installed on that gemset and not the system one. – Esteban Feldman Dec 9 '12 at 11:25
show 2 more comments

You must use 'gem uninstall gem_name' to uninstall a gem.

Note that if you installed the gem system-wide (ie. sudo bundle install) then you may need to specify the binary directory using the -n option, to ensure binaries belonging to the gem are removed. For example

sudo gem uninstall gem_name  -n /usr/lib/ruby/gems/1.9.1/bin
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.