An extension for the amazing airbrake gem which routes crash reports to HockeyApp
Add this to your Gemfile
gem 'airbrake'
gem 'hockeybrake'
Execute the following command for your Rails app
rails g hockeybrake
Update hockeybrake.rb in config/initializers, at least the following settings needs to be changed
# the bundle id
config.app_bundle_id= "###YOUR BUNDLE IDENTIFIER FROM HOCKEYAPP###"
# The application ID in hockey app
config.app_id="###YOUR APP SECRET###"
Resque comes with out of the box support for Airbrake. This gem is compatible with this support and it is well configured by default when the resque gem becomes part of your app. This behavious can be changed through configuration if needed. Just add the following to your configuration:
# Support for resque exception handling is enabled by default. Wit this
# settings the resque support will be disabled. If no resque gem is installed
# it will be disabled automatically
config.no_resque_handler = true
- Fork the project
- Fix the issue
- Add specs
- Create pull request on github
- Check out the HockeyApp documentation for custom crash reports: http://support.hockeyapp.net/kb/api/api-post-custom-crashes