Created
October 29, 2013 21:34
-
-
Save curtislinden/7223051 to your computer and use it in GitHub Desktop.
remove 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
list=`command gem list --no-versions` | |
for gem in $list; do | |
command gem uninstall $gem -aIx | |
done | |
command gem list | |
command gem install bundler |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment