AirbrakeCleanup

Simple plugin to cleanup all airbrake errors on a free airbrake account

Example

Easy cleanup of all errors on a airbrake account.

AirbrakeCleanup.account = ‘your_account_name’ AirbrakeCleanup.auth_token = ‘token_found_in_your_profile’ AirbrakeCleanup.process

Rails 3

To include automatic cleanup on deployment in a Rails app, add the following line at the end of deploy.rb

require ‘airbrake_cleanup/recipes’

and configure your credentials in an initialiser

AirbrakeCleanup.account = ‘your_account_name’ AirbrakeCleanup.auth_token = ‘token_found_in_your_profile’