- 
      
 - 
        
Save jschoolcraft/e7683c60a2d64b0ebe8c to your computer and use it in GitHub Desktop.  
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ### Rails app generator template | |
| ### run with rails new __app_name__ -m https://gist.github.com/DamirSvrtan/28a28e50d639b9445bbc/raw/app_template.rb | |
| 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