Skip to content

Instantly share code, notes, and snippets.

@dngo
Created May 1, 2012 21:46
Show Gist options
  • Save dngo/2571702 to your computer and use it in GitHub Desktop.
Save dngo/2571702 to your computer and use it in GitHub Desktop.
uninstall all gems
# To uninstall all gems
GEMS=`gem list --no-versions`
for x in $GEMS ; do gem uninstall $x; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment