class Notifun::Notifier::ParentNotifier

Attributes

error_message[RW]
success[RW]

Public Class Methods

new() click to toggle source
# File lib/notifun/notifiers/parent_notifier.rb, line 4
def initialize
  @success = false
  @error_message = nil
end

Public Instance Methods

notify!(*arguments) click to toggle source
# File lib/notifun/notifiers/parent_notifier.rb, line 9
def notify!(*arguments)
  false
end