MailgunCatcher
Catch mailgun events and report to bugsnag
Usage
Add this line to your application's Gemfile:
gem 'mailgun_catcher'And then execute:
$ bundleAdd to routes:
mount MailgunCatcher::Engine, at: "/mailgun_catcher"To configure an exact path for the webhooks controller create an initializer (mailgun_catcher.rb) with the following content:
MailgunCatcher::Engine.config.webhooks_path = 'custom_path'This will allow you change the default webhook route from /webhooks to /custom_path.
Notifiers
Library supports event dispatching via notifier. Notifier is any object that responds to notify message. By default, events are notified on Bugsnag service, but you can provide your own notifier implementation by configuring MailgunCatcher.config.notifier.
Configuring custom notifier
class MailgunNotifier
def notify(event)
puts event
end
endregister custom notifier implementation through initializer
MailgunCatcher.setup do |config|
config.notifiers = ["MailgunCatcher::Notifier::Bugsnag", "MailgunNotifier"]
endContributing
Contribution directions go here.
License
The gem is available as open source under the terms of the MIT License.