Skip to content

Instantly share code, notes, and snippets.

@vishvish
Forked from nbibler/gist:5307941
Last active December 18, 2015 03:59
Show Gist options
  • Save vishvish/5722132 to your computer and use it in GitHub Desktop.
Save vishvish/5722132 to your computer and use it in GitHub Desktop.
.powrc for projects that works with RVM
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