class ExceptionNotifier::SquashNotifier

Constants

VERSION

Public Class Methods

new(*args, &p) click to toggle source
# File lib/exception_notifier/squash_notifier/base.rb, line 8
def self.new(*args, &p)
  return SquashRailsNotifier.new(*args, &p) if self.enable_rails && defined? Rails
  SquashRubyNotifier.new(*args, &p)
end