Skip to content

Instantly share code, notes, and snippets.

@dinks
Forked from nbibler/gist:5307941
Created September 23, 2013 15:21
Show Gist options
  • Save dinks/6672078 to your computer and use it in GitHub Desktop.
Save dinks/6672078 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