Module: DataChecks::Notifiers

Extended by:
ActiveSupport::Autoload
Defined in:
lib/data_checks/notifiers.rb,
lib/data_checks/notifiers/notifier.rb,
lib/data_checks/notifiers/email_notifier.rb,
lib/data_checks/notifiers/slack_notifier.rb,
lib/data_checks/notifiers/logger_notifier.rb,
lib/data_checks/notifiers/email_default_formatter.rb,
lib/data_checks/notifiers/slack_default_formatter.rb,
lib/data_checks/notifiers/logger_default_formatter.rb

Defined Under Namespace

Classes: EmailDefaultFormatter, EmailNotifier, LoggerDefaultFormatter, LoggerNotifier, Notifier, SlackDefaultFormatter, SlackNotifier

Class Method Summary collapse

Class Method Details

.lookup(name) ⇒ Object



15
16
17
# File 'lib/data_checks/notifiers.rb', line 15

def self.lookup(name)
  const_get("#{name.to_s.camelize}Notifier")
end