Skip to content

Instantly share code, notes, and snippets.

@aasmith
Created September 13, 2010 19:21
Show Gist options
  • Save aasmith/577846 to your computer and use it in GitHub Desktop.
Save aasmith/577846 to your computer and use it in GitHub Desktop.
Rails 3 bootstrap
# 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