Skip to content

Instantly share code, notes, and snippets.

@flaugabriel
Created September 5, 2019 00:24
Show Gist options
  • Save flaugabriel/9def7f46639454cdf166699f3de54dd3 to your computer and use it in GitHub Desktop.
Save flaugabriel/9def7f46639454cdf166699f3de54dd3 to your computer and use it in GitHub Desktop.
Keep your environment clean
If you think your gems are messed up, you can always uninstall all local gems with the following command:
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