Class: Salemove::ProcessHandler::GrowlNotifier

Inherits:
Object
  • Object
show all
Defined in:
lib/salemove/process_handler/notifier_factory.rb

Instance Method Summary collapse

Constructor Details

#initialize(process_name) ⇒ GrowlNotifier

Returns a new instance of GrowlNotifier.



40
41
42
# File 'lib/salemove/process_handler/notifier_factory.rb', line 40

def initialize(process_name)
  @process_name = process_name
end

Instance Method Details

#notify_or_ignore(error, _) ⇒ Object



44
45
46
# File 'lib/salemove/process_handler/notifier_factory.rb', line 44

def notify_or_ignore(error, _)
  Growl.notify(error.message, title: "Error in #{@process_name}")
end