I have global gems and various gemsets. I want to remove all gems of a gemset. Is there a way do to this, besides uninstalling the gemset?

link|improve this question

feedback

4 Answers

up vote 77 down vote accepted

Switch to the gemset, then "empty" it

rvm use @mygems # `rvm gemset use mygems` also works
rvm gemset empty mygems

Update: Added gemset-name to the remove command as noted in comments by Rafa

link|improve this answer
4  
You need to specify the gemset you want to empty. It's not enough just to "rvm use [gemset_name]". You need to "rvm gemset empty [gemset_name]". – Rafa Nov 29 '11 at 10:22
Very nice, but is this supposed to take upwards of 10 minutes without any feedback after the confirmation prompt? – l0b0 Apr 16 at 14:33
feedback

Isn't removing all the gems out of a gemset essentially the same operation as deleting a gemset and then adding it back? Why not just do this:

$ rvm gemset mygemset
$ rvm gemset delete mygemset
$ rvm gemset create mygemset
link|improve this answer
Yes, essentially it's the same. But I was wondering if there is a way to do this without deleting the gemset. When you delete a gemset, are the gems removed too or are they saved to a cache? – Nerian Jan 14 '11 at 17:02
1  
I'm pretty sure they're completely removed. For example, I have a gemset named jruby-1.5.6@radiant. All the gems are located here: /Users/dparoulek/.rvm/gems/jruby-1.5.6@radiant. When I do rvm gemset radiant, then it warns you to make sure, and then deletes the entire /Users/dparoulek/.rvm/gems/jruby-1.5.6@radiant directory. – Dave Paroulek Jan 14 '11 at 17:39
This would be about the same I guess. I was looking for an alternative because I wanted to remove all the gems from the global gemset so that I could stop new gemsets from "inheriting" the gems from the global gemset. – user420504 Nov 27 '11 at 20:42
feedback

This command removes all the ruby gems installed locally in 1-step Works well in Ubuntu 10.10

gem list | cut -d" " -f1 | xargs gem uninstall -aIx

PS - removes all local gems. Use sudo accordingly.

link|improve this answer
feedback

I agree with Dave Paroulek, this is the best approach

$ rvm gemset mygemset
$ rvm gemset delete mygemset
$ rvm gemset create mygemset
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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