Skip to content

Instantly share code, notes, and snippets.

@akodkod
Last active December 18, 2015 12:10
Show Gist options
  • Save akodkod/11078561 to your computer and use it in GitHub Desktop.
Save akodkod/11078561 to your computer and use it in GitHub Desktop.
Rails Gems for Developing
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
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
@sandipransing
Copy link

Nice info !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment