Skip to content

Instantly share code, notes, and snippets.

@the-teacher
Created September 25, 2015 14:50
Show Gist options
  • Save the-teacher/0eda294c2e15de6c6b71 to your computer and use it in GitHub Desktop.
Save the-teacher/0eda294c2e15de6c6b71 to your computer and use it in GitHub Desktop.
delete all gems
# Delete all gems:
gem list | cut -d' ' -f1 | xargs gem uninstall -aIx
for i in `gem list --no-versions`; do gem uninstall -aIx $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment