Last active
March 6, 2017 14:18
-
-
Save sadfuzzy/1eab15d5c2102da16db5ab51320dc791 to your computer and use it in GitHub Desktop.
Ruby Gemfile
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
gem 'traceroute' # Checks for undefined routes and unreachable actions. | |
gem 'bullet' # Checks for query optimizations. | |
gem 'rails_best_practices' # Checks for code optimization. | |
gem 'rubycritic' # Checks for code optimization. | |
gem 'sandi_meter' # Checks for compliance to Sandi Metz's rules for developers. | |
gem 'simplecov' #Enables coverage analysis of code. | |
gem 'overcommit' # Git coomit hooks | |
gem 'rubocop' # Show me errors in code style | |
gem 'rack-mini-profiler' # Show me slow code | |
gem 'brakeman' # Security inspector | |
gem 'deadweight' # Remove unused css | |
gem 'better_errors' | |
gem 'binding_of_caller' | |
gem 'pry-rails' | |
gem 'simple_form' | |
gem 'letter_opener' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment