Skip to content

Instantly share code, notes, and snippets.

@workmad3
Forked from wayneeseguin/gist:296055
Created February 6, 2010 21:16
Show Gist options
  • Save workmad3/296962 to your computer and use it in GitHub Desktop.
Save workmad3/296962 to your computer and use it in GitHub Desktop.
This example shows how to setup an environment running Rails 3 beta under 1.9.1 with a 'rails3' gem set.
∴ rvm update --head
# ((Open a new shell))
# If you do not already have the ruby interpreter installed, install it:
∴ rvm install 1.9.1
# Use the ruby + gem set
∴ rvm 1.9.1%rails3
# Install bundler
∴ gem install bundler
# Clone the git repository:
∴ git clone git://github.com/rails/rails.git
# Go to the directory
∴ cd rails
# Bundle and install
∴ bundle install
∴ rake install
# Check to see we now have Rails 3.0.0 beta
∴ rails --version
Rails 3.0.0.beta
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment