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.



27
28
29
# File 'lib/salemove/process_handler/notifier_factory.rb', line 27

def initialize(process_name)
  @process_name = process_name
end

Instance Method Details

#notify_or_ignore(error, _) ⇒ Object



31
32
33
# File 'lib/salemove/process_handler/notifier_factory.rb', line 31

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