Skip to content

Instantly share code, notes, and snippets.

@squarism
Created February 3, 2011 03:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save squarism/809001 to your computer and use it in GitHub Desktop.
Save squarism/809001 to your computer and use it in GitHub Desktop.
Watchr config file for ruby programs with growl
# run me with watchr watchr.rb in a ruby project
# don't run me in a rails project. :)
# run me with test unit.
# don't run me with rspec or cucumber, check out my other watchr gists
ENV["WATCHR"] = "1"
system 'clear'
def growl(message)
growlnotify = `which growlnotify`.chomp
title = "Watchr Test Results"
passed = message.include?('0 failures, 0 errors')
image = passed ? "~/.watchr_images/passed.png" : "~/.watchr_images/failed.png"
severity = passed ? "-1" : "1"
options = "-w -n Watchr --image '#{File.expand_path(image)}'"
options << " -m '#{message}' '#{title}' -p #{severity}"
system %(#{growlnotify} #{options} &)
end
def run(cmd)
puts(cmd)
`#{cmd}`
end
def run_test_file(file)
system('clear')
result = run(%Q(ruby -I"lib:test" -rubygems #{file}))
growl result.split("\n").last rescue nil
puts result
end
def run_all_tests
system('clear')
result = run "rake test"
growl result.split("\n").last rescue nil
puts result
end
def run_all_features
system('clear')
run "cucumber"
end
def related_test_files(path)
Dir['test/*.rb'].select { |file| file =~ /#{File.basename(path).split(".").first}_test.rb/ }
end
def run_suite
run_all_tests
run_all_features
end
# add other files and directories here if you use different testing tools
# like cucumber you'll watch features/.*/.*\.feature
# rspec you'll watch spec/.*/.*\.spec
watch('test/.*_test\.rb') { |m| run_test_file(m[0]) }
watch('.*\.rb') { |m| related_test_files(m[0]).map {|tf| run_test_file(tf) } }
# Ctrl-\
Signal.trap 'QUIT' do
puts " --- Running all tests ---\n\n"
run_all_tests
end
@interrupted = false
# Ctrl-C
Signal.trap 'INT' do
if @interrupted then
@wants_to_quit = true
abort("\n")
else
puts "Interrupt a second time to quit"
@interrupted = true
Kernel.sleep 1.5
# raise Interrupt, nil # let the run loop catch it
run_suite
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment