5 lines
151 B
Ruby
5 lines
151 B
Ruby
|
# Enviar una notificación cuando falla una tarea
|
||
|
SuckerPunch.exception_handler = -> (ex, klass, args) do
|
||
|
ExceptionNotifier.notify_exception(ex)
|
||
|
end
|