Sha256: 0ab5f9f92b64250cb79b474b7d7c64639c087a25cef32edf2a7fd7494aa50dc7
Contents?: true
Size: 369 Bytes
Versions: 22
Compression:
Stored size: 369 Bytes
Contents
module Errdo class Notifier include Errdo::Helpers::NotificationHelper def initialize(*args) exception, string, params = separate_args(*args) @parser = Errdo::Models::ErrorLoggerParser.new(exception, string, params) end def notify Errdo.notify_with.each do |notifier| notifier.notify(@parser) end end end end
Version data entries
22 entries across 22 versions & 1 rubygems