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

I have several versions of a ruby gem:

$ gem list
rjb (1.3.4, 1.3.3, 1.2.5, 1.1.9)

How to remove some of this versions ?

share|improve this question

4 Answers

up vote 74 down vote accepted

gem uninstall rjb will prompt you to choose which ones you want to remove.

gem uninstall rjb --version 1.1.9 would remove version 1.1.9 only

gem uninstall rjb --version '<1.3.4' would remove all versions less than 1.3.4.

gem cleanup rjb will remove all old versions of the gem.

share|improve this answer

For removing older versions of all installed gems:

 gem cleanup --dryrun

to preview what are going to be removed.

 gem cleanup

to actually remove them.

share|improve this answer

Try something like gem uninstall rjb --version 1.3.4.

share|improve this answer

"gem cleanup" use system commands. installed gems are just directories in the filesystem. if you want to batch delete, use "rm -R".

  1. gem environment and get "GEM PATHS"
  2. cd your-gem-paths/gems
  3. ls -1 |grep rjb- |xargs rm -R
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.