Skip to content

Instantly share code, notes, and snippets.

@danielevans
Created April 17, 2011 07:45
Show Gist options
  • Save danielevans/923831 to your computer and use it in GitHub Desktop.
Save danielevans/923831 to your computer and use it in GitHub Desktop.
rvm install script
if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; then
source "$HOME/.rvm/scripts/rvm"
elif [[ -s "/usr/local/rvm/scripts/rvm" ]] ; then
source "/usr/local/rvm/scripts/rvm"
else
printf "ERROR: An RVM installation was not found.\n"
fi
rvm use --create ree@#{app_name}
gem install bundler --no-ri --no-rdoc
bundle install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment