Skip to content

Instantly share code, notes, and snippets.

@jgeo
Last active August 29, 2015 14:08
Show Gist options
  • Save jgeo/b5bb12c0a2ed6982f08e to your computer and use it in GitHub Desktop.
Save jgeo/b5bb12c0a2ed6982f08e to your computer and use it in GitHub Desktop.
Upgrade to Yosemite Part 2
echo 'Updating RVM'
rvm get stable
rvm cleanup all
echo "Installing Ruby version $RUBY_VERSION"
RUBY_VERSION=2.1.4
rvm install $RUBY_VERSION --disable-binary
rvm --default use $RUBY_VERSION
echo 'Verify new ruby install'
cd ~/git/frontend
git pull
git checkout develop
bundle install
rake db:migrate
rake db:test:prepare
bundle install
rvm reload
bundle exec rspec spec
bundle exec cucumber
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment