Skip to content

Instantly share code, notes, and snippets.

@jeremy
Created December 30, 2009 03:03
Show Gist options
  • Save jeremy/265807 to your computer and use it in GitHub Desktop.
Save jeremy/265807 to your computer and use it in GitHub Desktop.
# 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