Skip to content

Instantly share code, notes, and snippets.

@joshed-io
Last active December 14, 2015 04:08
Show Gist options
  • Save joshed-io/5025698 to your computer and use it in GitHub Desktop.
Save joshed-io/5025698 to your computer and use it in GitHub Desktop.
Try out Ruby 2.0 with an existing app that uses Bundler
cd $HOME/.rbenv/plugins/ruby-build
git pull
rbenv install 2.0.0-p0
rbenv local 2.0.0-p0
gem install bundler -v 1.3.0.pre.8
cd /path/to/ruby/app
# Necessary if not already 600
chmod 600 $HOME/.gem/credentials
# Change
# source :rubygems
# in Gemfile to
# source "http://rubygems.org"
bundle install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment