wtnabe (owner)

Revisions

gist: 168872 Download_button fork
public
Public Clone URL: git://gist.github.com/168872.git
Embed All Files: show embed
simple.god.diff #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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