Sha256: 0de81a0dcd7d4f57c6c12680958d285a42becee737530b411f847da2992a91e2
Contents?: true
Size: 554 Bytes
Versions: 3
Compression:
Stored size: 554 Bytes
Contents
# 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::Mailer.sender = "project-name@example.com" ExceptionAlarm::Mailer.prefix = '[ERROR-project-name]' ExceptionAlarm::Mailer.recipients = %w[vakhov@gmail.com] end # ... end ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
exception-alarm-1.0.2 | README.md |
exception-alarm-1.0.1 | README.md |
exception-alarm-1.0.0 | README.md |