Skip to content

Instantly share code, notes, and snippets.

@wtnabe
Created August 17, 2009 03:16

Revisions

  1. wtnabe created this gist Aug 17, 2009.
    24 changes: 24 additions & 0 deletions simple.god.diff
    Original 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