Skip to content

Instantly share code, notes, and snippets.

@jschoolcraft
Forked from DamirSvrtan/app_template.rb
Last active August 29, 2015 14:11
Show Gist options
  • Save jschoolcraft/e7683c60a2d64b0ebe8c to your computer and use it in GitHub Desktop.
Save jschoolcraft/e7683c60a2d64b0ebe8c to your computer and use it in GitHub Desktop.
remove_file "README.rdoc"
create_file "README.md", "TODO"
run 'mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss'
gsub_file("Gemfile", /#.*\n/, '')
gsub_file("Gemfile", /gem 'spring'.*\n/, '')
gem 'simple_form'
gem 'slim-rails'
gem_group :development do
gem 'spring'
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
gem 'pry-rails'
gem 'bullet'
gem 'traceroute'
gem 'letter_opener'
end
run "bundle install"
generate "simple_form:install"
git :init
append_file ".gitignore", "dump.rdb"
git add: ".", commit: "-m 'Initial commit'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment