Skip to content

Instantly share code, notes, and snippets.

@timdiggins
timdiggins / delayedjob-bugsnag.rb
Last active August 29, 2015 14:11 — forked from loopj/delayedjob-bugsnag.rb
notify bugsnag when delayed job errors occur
# some references which helped
# http://blog.salsify.com/engineering/delayed-jobs-callbacks-and-hooks-in-rails
# http://stackoverflow.com/a/16639849/109175
# example plugin: https://github.com/collectiveidea/delayed_job/blob/master/lib/delayed/plugins/clear_locks.rb
module Delayed
module Plugins
class Bugsnag < Plugin
callbacks do |lifecycle|
lifecycle.around(:invoke_job) do |job, &block|
begin