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 ?
|
|
|
|
|||
|
|
|
For removing older versions of all installed gems:
to preview what are going to be removed.
to actually remove them. |
|||
|
|
|
"gem cleanup" use system commands. installed gems are just directories in the filesystem. if you want to batch delete, use "rm -R".
|
|||
|
|