-
-
Save entryway/271910 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 rack bundler # Get some gems we'll need (rails3 gemset should be empty) | |
git clone git://github.com/rails/rails.git && cd rails # Get rails source. | |
rake gem # build rails 3.pre | |
git submodule init && git submodule update # Get git dependencies. | |
cd arel && thor :build && thor :install && cd ../.. # Install arel | |
rails --version # => Rails 3.0.pre | |
gem bundle --only default | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment