0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
An extension for the amazing airbrake gem which routes crash reports directly to HockeyApp
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 3.1.2, ~> 3.1
>= 1.1.5, ~> 1.1
 Project Readme

HockeyBrake

An extension for the amazing airbrake gem which routes crash reports to HockeyApp

Build Status Gem Version

Installation

Add this to your Gemfile

gem 'airbrake'
gem 'hockeybrake'

Execute the following command for your Rails app

rails g hockeybrake

Configuration

General

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 Failures

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

Authors

  • Dirk Eisenberg endorse

Contributing

  • Fork the project
  • Fix the issue
  • Add specs
  • Create pull request on github

More Information