Skip to content

Instantly share code, notes, and snippets.

@fgrehm
Last active December 13, 2015 17:59
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 fgrehm/4952397 to your computer and use it in GitHub Desktop.
Save fgrehm/4952397 to your computer and use it in GitHub Desktop.
Removing all installed gems
gem list | cut -d" " -f1 | xargs gem uninstall -aIx
gem list | grep -v 'test-unit\|psych\|rdoc\|minitest\|json\|io-console\|bigdecimal\|rake' | cut -d" " -f1 | xargs gem uninstall -aIx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment