To remove all installed gems that are removable, simply use the following statement:
for x in `gem list --no-versions`; do gem uninstall $x -a -x -I; done
To remove all installed gems that are removable, simply use the following statement:
for x in `gem list --no-versions`; do gem uninstall $x -a -x -I; done
You must be logged in to post a comment.