- Upgrade your Ruby module to 4.1.0 (this isn't strictly necessary, but there's a lot of good stuff)
- 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
- Run
boxen
How do we upgrade Ruby?