Skip to content

Instantly share code, notes, and snippets.

@monkseal
Forked from IanVaughan/uninstall_gems.sh
Last active October 26, 2021 20:52
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 monkseal/5abdfa3ec1e92e640ba8b517d5d51cda to your computer and use it in GitHub Desktop.
Save monkseal/5abdfa3ec1e92e640ba8b517d5d51cda to your computer and use it in GitHub Desktop.
Uninstall all rbenv gems
#!/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