Created
May 11, 2011 17:06
-
-
Save simonreed/966879 to your computer and use it in GitHub Desktop.
.watchr/rails.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ENV["WATCHR"] = "1" | |
system 'clear' | |
def growl(message) | |
growlnotify = `which growlnotify`.chomp | |
title = message.include?('0 failures, 0 errors') ? "AWESOMEO" : random_insult | |
image = message.include?('0 failures, 0 errors') ? "~/.watchr_images/passed.png" : "~/.watchr_images/failed.png" | |
options = "-w -n Watchr --image '#{File.expand_path(image)}' -m '#{message}' '#{title}'" | |
system %(#{growlnotify} #{options} &) | |
end | |
def random_insult | |
insults = ["RETARD", "YOU SUCK DONKEY DICK", "YOU'RE A SPECIAL NEEDS CHILD"] | |
insults[rand(insults.size)] | |
end | |
def run(cmd) | |
puts(cmd) | |
`#{cmd}` | |
end | |
def run_test_file(file) | |
system('clear') | |
result = run(%Q(ruby -I"lib:test" -rubygems #{file})) | |
lines = result.split("\n").select{|r|r.include?("tests")} | |
growl lines.last rescue nil | |
puts result | |
end | |
def run_all_tests | |
system('clear') | |
result = run "rake test" | |
lines = result.split("\n").select{|r|r.include?("tests")} | |
growl lines.last rescue nil | |
puts result | |
end | |
def run_all_features | |
system('clear') | |
system("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 | |
watch('test/test_helper\.rb') { run_all_tests } | |
watch('test/.*/.*_test\.rb') { |m| run_test_file(m[0]) } | |
watch('app/.*/.*\.rb') { |m| related_test_files(m[0]).map {|tf| run_test_file(tf) } } | |
watch('features/.*/.*\.feature') { run_all_features } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment