0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Sends exceptions to coalmineapp.com
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

= 3.0.4
= 0.5.3
= 1.23.0
 Project Readme

Please note, this gem is no longer maintained

Resque Coalmine

Resque failure backend that sends exceptions to coalmineapp.com.

Installation

Add this line to your application's Gemfile:

gem 'resque_coalmine'

And then execute:

$ bundle

Or install it yourself as:

$ gem install resque_coalmine

Usage

Resque::Failure::Coalmine.configure do |config|
  config.signature = 'my_secret_signature'
end

Resque::Failure.backend = Resque::Failure::Coalmine

If you are already using coalmineapp.com gem, you just need

Resque::Failure.backend = Resque::Failure::Coalmine

If you've not yet configured Coalmine in your project, visit the project page for installation instructions.

Notes

In development mode you need to configure Coalmine to send exceptions, default is ['production', 'staging']

Coalmine.configure do |config|
    ....
    config.enabled_environments += %w( development ) if Rails.env.development?
end

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request