Last active
December 18, 2015 12:10
-
-
Save akodkod/11078561 to your computer and use it in GitHub Desktop.
Rails Gems for Developing
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
if defined? Bullet | |
Bullet.enable = true | |
Bullet.alert = true | |
Bullet.bullet_logger = true | |
Bullet.console = true | |
Bullet.rails_logger = true | |
Bullet.add_footer = true | |
end |
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
group :development | |
gem 'better_errors' # better errors pages (https://github.com/charliesome/better_errors) | |
gem 'binding_of_caller' # console for better errors | |
gem 'jazz_hands' # cool rails console `rails c` (https://github.com/nixme/jazz_hands) | |
gem 'quiet_assets' # speed up assets & clear log (https://github.com/evrone/quiet_assets) | |
gem 'bullet' # optimize queries (https://github.com/flyerhzm/bullet) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice info !