Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpogue/resque_exception_notification
A Failure Backend for Resque which sends exception emails via the exception_notification gem
https://github.com/dpogue/resque_exception_notification
Last synced: 13 days ago
JSON representation
A Failure Backend for Resque which sends exception emails via the exception_notification gem
- Host: GitHub
- URL: https://github.com/dpogue/resque_exception_notification
- Owner: dpogue
- License: mit
- Created: 2013-08-09T21:08:15.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-09T21:11:58.000Z (over 11 years ago)
- Last Synced: 2024-11-08T09:46:04.561Z (2 months ago)
- Language: Ruby
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
Using the [exception_notification](https://github.com/smartinez87/exception_notification) gem in Rails to send exception emails ? This gem provides a Resque failure backend to report Resque errors via exception notification emails.
## Installation
* Add the gem to your Gemfile.
gem "resque_exception_notification"
* Configure the gem in `config/initializers/resque.rb`
require "resque/failure/multiple"
require "resque/failure/redis"
require "resque/failure/exception_notification"Resque::Failure::Multiple.classes = [ Resque::Failure::Redis, Resque::Failure::ExceptionNotification ]
Resque::Failure.backend = Resque::Failure::Multiple## Dependencies
* [exception_notification](https://github.com/smartinez87/exception_notification) `~> 4.0.0`