Created
April 27, 2017 08:36
-
-
Save aurels/057473e9ac7c2a17f1263631ee12169c to your computer and use it in GitHub Desktop.
Uninstalling all gems
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://stackoverflow.com/questions/15100496/uninstalling-all-gems-ruby-2-0-0 | |
for i in `gem list --no-versions`; do gem uninstall -aIx $i; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment