Created
August 17, 2009 03:16
Revisions
-
wtnabe created this gist
Aug 17, 2009 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ diff --git a/simple.god b/simple.god index 407e34b..3ca0518 100644 --- a/simple.god +++ b/simple.god @@ -1,4 +1,12 @@ +# -*- mode: ruby -*- + +require File.dirname( __FILE__ ) + '/../god_extension/god_growl' + #The simplest possible watch +God.contact( :god_growl ) do |c| + c.name = 'growl' +end + God.watch do |w| w.name = "crashy" w.interval = 1.seconds @@ -7,6 +15,7 @@ God.watch do |w| w.start_if do |start| start.condition(:process_running) do |c| c.running = false + c.notify = 'growl' end end