class ConeyIsland::Notifiers::BaseNotifier

Public Class Methods

notify(message = "", extra_params = {}) click to toggle source
# File lib/coney_island/notifiers/base_notifier.rb, line 4
def self.notify(message = "", extra_params = {})
  # NOOP
end

Protected Class Methods

fail_message(notifier_symbol, notifier_class) click to toggle source
# File lib/coney_island/notifiers/base_notifier.rb, line 10
def self.fail_message(notifier_symbol, notifier_class)
  "You have specified #{notifier_symbol} as your notifier, but #{notifier_class} doesn't seem to be installed. Try adding #{notifier_symbol} to your Gemfile."
end