Skip to content

Instantly share code, notes, and snippets.

@entryway
Forked from rkh/gist:267470
Created January 8, 2010 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save entryway/271910 to your computer and use it in GitHub Desktop.
Save entryway/271910 to your computer and use it in GitHub Desktop.
# 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