Skip to content

Instantly share code, notes, and snippets.

@wfarr
Created May 2, 2013 02:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wfarr/5499740 to your computer and use it in GitHub Desktop.
Save wfarr/5499740 to your computer and use it in GitHub Desktop.
How to clear out your rbenv managed rubies and trigger Boxen to redownload the rebuilt, faster native binaries
  1. Upgrade your Ruby module to 4.1.0 (this isn't strictly necessary, but there's a lot of good stuff)
  2. Remove existing installed 1.9.3 and 2.0.0 versions:
for version in `rbenv versions --bare | grep 1.9.3`; do
  rbenv uninstall $version
done

for version in `rbenv versions --bare | grep 2.0.0`; do
  rbenv uninstall $version
done
  1. Run boxen
@jonrohan
Copy link

jonrohan commented May 2, 2013

Upgrade your Ruby module to 4.1.0 (this isn't strictly necessary, but there's a lot of good stuff)

How do we upgrade Ruby?

@samjsharpe
Copy link

Change the github "ruby" line in your Puppetfile from the version you are currently using, to 4.1.0: https://github.com/boxen/our-boxen/blob/master/Puppetfile#L30
You will also need to change github "stdlib" to 4.0.0 as per boxen/puppet-ruby#22

Then run Boxen to download the latest modules

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment