Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

getting rid of ruby gems that won't die

Tags:

I've got a few ruby gems that won't go away.

I think it has to do with when I installed them. Occasionally I have forgotten to use "sudo" before doing a gem install, which results in a write error and from what I can gather puts a copy of the gem in my user directory instead of somewhere it can run. But gem uninstall doesn't work. It continually shows up in 'gem list' but can't uninstall it from either gem uninstall, or sudo gem uninstall. I tried directly deleting one gem after finding the path in my 'gem environment', but that still left the gem on the list.

Also is it possible just to remove all gems and start from scratch? These are driving me nuts.

I'm running OS X.

like image 229
holden Avatar asked Jun 16 '09 10:06

holden


2 Answers

Assuming that gem clean (or sudo gem clean) doesn't work, I would try the following to totally remove all gems from your system:

You can see where gems have been installed by running the command:

gem env paths 

To remove all the gems on your system, simply remove the folders returned by this command.

Additionally, on OSX Leopard, default gems are installed in this folder:

/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8 

If this folder exists on your system, as before you can remove this folder to ensure all gems are deleted.

like image 99
Olly Avatar answered Oct 29 '22 23:10

Olly


You could also do the following to get rid of installed gems.

gem list -d [gem name] gem uninstall --install-dir [install directory] [gem name] 

if the before mentioned things don't work, I had to do it myself today.

like image 36
Bitterzoet Avatar answered Oct 30 '22 01:10

Bitterzoet