class Notifier::Base

Public Class Methods

init() click to toggle source
# File lib/remme/notifier/base.rb, line 4
def init
  self.tap { @adapter = adapter }
end
run(message) click to toggle source
# File lib/remme/notifier/base.rb, line 8
def run(message)
  @adapter.run(message)
end

Private Class Methods

adapter() click to toggle source
# File lib/remme/notifier/base.rb, line 14
def adapter
  Adapters::Say
end