Skip to content

Instantly share code, notes, and snippets.

@rsanheim
Created November 29, 2011 15:35
Show Gist options
  • Select an option

  • Save rsanheim/1405207 to your computer and use it in GitHub Desktop.

Select an option

Save rsanheim/1405207 to your computer and use it in GitHub Desktop.
Simple way to override your rvm locally only (i.e. use Ruby 1.9.3 locally, versus 1.9.2 on CI or other places)
# make sure you ignore this file
.rvmrc_override
if [ -r .rvmrc_override ]; then
source .rvmrc_override
else
rvm use ruby-1.9.2
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment