-
-
Save entryway/271909 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Installing Rails 3.0.pre in it's own gemset using rvm. | |
# I use Rube Enterprise Edition for rails development. | |
# You might want to replace ree with Your Favorite Ruby Implementation(tm) | |
rvm use ree%rails3 # Create new gemset called rails3. | |
gem install rake test-spec thor sqlite3-ruby # Get some gems we'll need (rails3 gemset should be empty) | |
git clone git://github.com/rails/rails.git && cd rails # Get rails source. | |
git submodule init && git submodule update # Get git dependencies. | |
cd rack && rake gem && gem install rack-1.1.*.gem # Install rack 1.1 | |
cd ../arel && thor :build && thor :install && cd ../.. # Install arel | |
rails --version # => Rails 3.0.pre | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment