Skip to content

Instantly share code, notes, and snippets.

@andyjeffries
Created March 20, 2009 09:46
Show Gist options
  • Save andyjeffries/82304 to your computer and use it in GitHub Desktop.
Save andyjeffries/82304 to your computer and use it in GitHub Desktop.
require 'autotest/redgreen'
require 'autotest/timestamp'
module Autotest::Growl
def self.growl title, msg, img, pri=0, sticky=""
system "growlnotify -n autotest --image #{img} -p #{pri} -m #{msg.inspect} #{title} #{sticky}"
end
Autotest.add_hook :ran_command do |at|
image_root = "~/.autotest_images"
results = [at.results].flatten.join("\n")
output = results.slice(/(\d+)\stests,\s(\d+)\sassertions,\s(\d+)\sfailures,\s(\d+)\serrors/)
if output
if $~[3].to_i > 0 || $~[4].to_i > 0
growl "FAIL", "#{output}", "#{image_root}/fail.png", 2
else
growl "Pass", "#{output}", "#{image_root}/pass.png"
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment