Skip to content

Instantly share code, notes, and snippets.

@mtsmfm
Created April 19, 2013 03:57
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 mtsmfm/5418045 to your computer and use it in GitHub Desktop.
Save mtsmfm/5418045 to your computer and use it in GitHub Desktop.
Rails Application Template for Rails Tutorial Chapter 3
run 'echo "" > Gemfile'
add_source 'https://rubygems.org'
gem 'rails', '3.2.13'
gem_group :development, :test do
gem 'sqlite3', '1.3.5'
gem 'rspec-rails', '2.11.0'
end
gem_group :assets do
gem 'sass-rails', '3.2.5'
gem 'coffee-rails', '3.2.2'
gem 'uglifier', '1.2.3'
end
gem 'jquery-rails', '2.0.2'
gem_group :test do
gem 'capybara', '1.1.2'
end
gem_group :production do
gem 'pg', '0.12.2'
end
run "bundle install"
generate "rspec:install"
git :init
git :add => "."
git :commit => '-m "Initial commit"'
@mtsmfm
Copy link
Author

mtsmfm commented Apr 19, 2013

Rails Tutorial Chap 3

$ rails new sample_app -T -m https://gist.github.com/macchima23/5418045/raw/template.rb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment