Created
December 30, 2009 03:03
-
-
Save jeremy/265807 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Dependencies: ruby, git, rubygems | |
sudo gem install bundler | |
git clone git://github.com/rails/rails.git | |
cd rails && gem bundle | |
ruby -rvendor/gems/environment railties/bin/rails ../new_app | |
cd ../new_app | |
# edit Gemfile to use: | |
gem "rails", :git => "file:///path/to/rails" | |
gem "arel", :git => "git://github.com/rails/arel.git" | |
gem "rack", :git => "git://github.com/rails/rack.git" | |
gem bundle | |
./script/server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment