Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ayucat
Created February 25, 2013 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayucat/5028135 to your computer and use it in GitHub Desktop.
Save ayucat/5028135 to your computer and use it in GitHub Desktop.
How to install Rails 4.0-beta from scratch (on a non-dev machine) cf. http://www.zlu.me/blog/2012/10/29/install-and-create-rails-4-dot-0-app/
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', github: 'rails/rails'
group :assets do
gem 'uglifier', '>= 1.0.3'
end
gem 'journey', github: 'rails/journey'
gem 'activerecord-deprecated_finders', github: 'rails/activerecord-deprecated_finders'
#!/bin/bash
bundle install
`bundle show rails`/railties/bin/rails new appname
bundle install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment