# Exception Alarm This gem refactored clone of exception notifier plugin. ## Installation Add this line to your application's Gemfile: ``` ruby gem 'exception-alarm' ``` And then execute: ``` $ bundle ``` ## Usage Add to ApplicationController before filter ``` ruby class ApplicationController < ActionController::Base before_filter do ExceptionAlarm::Notifier.sender = "project-name@example.com" ExceptionAlarm::Notifier.prefix = '[ERROR-project-name]' ExceptionAlarm::Notifier.recipients = %w[vakhov@gmail.com] end # ... end ```