Skip to content

Instantly share code, notes, and snippets.

@curtislinden
Created October 29, 2013 21:34
Show Gist options
  • Save curtislinden/7223051 to your computer and use it in GitHub Desktop.
Save curtislinden/7223051 to your computer and use it in GitHub Desktop.
remove all gems
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