Created
December 13, 2012 20:12
-
-
Save dwo/4279396 to your computer and use it in GitHub Desktop.
I used this to delete all my gems once
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
#!/bin/bash | |
GEMS=`gem list --no-versions` | |
for x in $GEMS ; do gem uninstall -x --ignore-dependencies $x; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment