Skip to content

Instantly share code, notes, and snippets.

@amokan
Forked from nbibler/gist:5307941
Created April 22, 2013 14:08
Show Gist options
  • Save amokan/5435395 to your computer and use it in GitHub Desktop.
Save amokan/5435395 to your computer and use it in GitHub Desktop.
if [ -f "$rvm_path/scripts/rvm" ]; then
source "$rvm_path/scripts/rvm"
if [ -f ".rvmrc" ]; then
source ".rvmrc"
fi
if [ -f ".ruby-version" ]; then
rvm use `cat .ruby-version`
fi
if [ -f ".ruby-gemset" ]; then
rvm gemset use --create `cat .ruby-gemset`
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment