Created
September 13, 2010 19:21
-
-
Save aasmith/577846 to your computer and use it in GitHub Desktop.
Rails 3 bootstrap
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
# bootstrap a new rails 3.0 project from the 3-0-stable branch | |
# | |
# mkdir new_project | |
# | |
# place this Gemfile in new_project | |
# | |
# bundle install --path .gems | |
# bundle exec rails -v | |
# bundle exec rails new . | |
# | |
# merge the installer Gemfile when prompted; keep the rails gem decl below. | |
source 'http://rubygems.org' | |
gem "rails", | |
:git => "git://github.com/rails/rails.git", | |
:branch => "3-0-stable" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment