Skip to content

Instantly share code, notes, and snippets.

@alvinang
Last active August 29, 2015 13:56
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 alvinang/9241413 to your computer and use it in GitHub Desktop.
Save alvinang/9241413 to your computer and use it in GitHub Desktop.
Rails Template Generator - Starter Template
# This starter templates adds gems to your gemfile when creating a new rails app
# Usage:
# rails new <app name> -m <this gist's url>/raw
gem_group :development, :test do
gem 'rspec-rails'
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
gem 'annotate'
end
gem 'bootstrap-sass' if yes?('Would you like to install Bootstrap sass?')
run "mv README.rdoc README.md"
run "bundle install"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment