CUSTOMIZATION.md in railman-0.0.3 vs CUSTOMIZATION.md in railman-0.1.0

- old
+ new

@@ -12,15 +12,32 @@ ## Gemfile Add following gems: pg - postgres database driver +jquery-turbolinks - ? +bootstrap-sass - ? +bootstrap_form - ? +bootstrap-datepicker-rails - ? +active_link_to - ? +dalli & kgio - memcached client +unicorn & unicorn_rails - use unicorn in development and production +capistrano & capistrano-* - deployment with capistrano exception_notification - notify me per email on each exception +better_errors & binding_of_caller - better error page with repl in development +quiet_assets - less noise in development log letter_opener - open emails in popup window in the browser in development mode +minitest-reporters - generate xml for jenkins +simplecov & simplecov-rcov - generate coverage reports locally and for jenkins +capybara & capybara_minitest_spec - for webtests +selenium-webdriver - use real browser for webtests +poltergeist - headless tests with phantom.js Remove following gems: sqlite3 - we are using postgres per default +jbuilder - not every application needs it +byebug - we don't use it, we use the RubyMine debugger instead Add the application-specific gems to Gemfile.local, so it can be kept separate from the base Gemfile. ## Eyefile @@ -77,5 +94,50 @@ ## config/secrets.yml Use SECRET_TOKEN from .env +## config/deploy.rb + +Custom capistrano deployment script + +## Capfile + +Capistrano main file (generated by capify!) + +## app/assets/stylesheets + +Delete application.css +Add application.sass + +## app/assets/javascripts/application.js + +Add: +//= require jquery.turbolinks +//= require bootstrap-sprockets +//= require bootstrap-datepicker + +## views/layouts + +Modify application.html.erb +Add _messages.html.erb + +## app/controllers/home_controller.rb + +Home controller shows the main page + +## app/views/home/index.html.erb + +Dummy welcome page + +## config/routes.rb + +Remove comments and set root + +## README + +Remove README.rdoc +Add README.md + +## .gitignore + +Ignore: .env, .idea, .DS_Store