Skip to content

Instantly share code, notes, and snippets.

@jonatin
Created February 10, 2014 23:59
Show Gist options
  • Save jonatin/8926739 to your computer and use it in GitHub Desktop.
Save jonatin/8926739 to your computer and use it in GitHub Desktop.
rbenv, re-build all installed versions
for ruby in $(ls ~/.rbenv/versions/) ; do
echo $ruby
rbenv uninstall -f $ruby
rbenv install $ruby
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment