mirror of https://github.com/bjeanes/dotfiles.git
19 lines
588 B
Plaintext
19 lines
588 B
Plaintext
require 'autotest/redgreen'
|
|
require 'autotest/timestamp'
|
|
|
|
module Autotest::Growl
|
|
def self.growl title, msg, img, pri=0, sticky=""
|
|
system "growlnotify -n autotest -d #{title} -I #{img} -p #{pri} -m #{msg.inspect} #{title} #{sticky}"
|
|
end
|
|
|
|
Autotest.add_hook :ran_command do |at|
|
|
unless at.results.empty?
|
|
output = at.results.last.slice(/(\d+)\s.*examples?,\s(\d+)\s.*failures?/)
|
|
if output =~ /[1-9]\sfailures?/
|
|
growl "Tests", "#{output}", "~/.ruby_fail.png", 2, "-s"
|
|
else
|
|
growl "Tests", "#{output}", "~/.ruby_ok.png"
|
|
end
|
|
end
|
|
end
|
|
end |