-
-
Save monkseal/5abdfa3ec1e92e640ba8b517d5d51cda to your computer and use it in GitHub Desktop.
Uninstall all rbenv gems
This file contains hidden or 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
#!/usr/bin/env bash | |
uninstall() { | |
list=`gem list | grep -v default | awk '{print $1;}'` | |
for gem in $list; do | |
gem uninstall -aIx $gem | |
done | |
gem list | |
gem install bundler | |
} | |
rbenv local 3.0.2 | |
uninstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment