Skip to content

Instantly share code, notes, and snippets.

@phlco
Last active December 20, 2015 21:58
Show Gist options
  • Save phlco/6201045 to your computer and use it in GitHub Desktop.
Save phlco/6201045 to your computer and use it in GitHub Desktop.
Optimization Gems
# Optimization Gems
group :development do
gem 'bullet' # help to kill N+1 queries and unused eager loading
# https://github.com/flyerhzm/bullet
gem 'lol_dba' # scans your models and displays a list of columns that should be indexed
# https://github.com/plentz/lol_dba
gem 'rack-mini-profiler' # displays speed badge for every html page.
# https://github.com/harleyttd/miniprofiler
gem 'rails_best_practices' # a code metric tool to check the quality of rails codes
# https://github.com/railsbp/rails_best_practices
gem 'request-log-analyzer' # analyzes request logfiles to produce a performance report
# https://github.com/wvanbergen/request-log-analyzer
end
group :development do
gem 'flay' # analyzes code for structural similarities.
# https://github.com/seattlerb/flay
gem 'reek' # Code smell detector for Ruby
# https://github.com/troessner/reek
gem 'smusher' # Ruby/CLI: Automatic lossless reduction of all your images
# https://github.com/grosser/smusher
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment