Skip to content

Instantly share code, notes, and snippets.

@aurels
Created April 27, 2017 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aurels/057473e9ac7c2a17f1263631ee12169c to your computer and use it in GitHub Desktop.
Save aurels/057473e9ac7c2a17f1263631ee12169c to your computer and use it in GitHub Desktop.
Uninstalling all gems
# 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