Created
July 20, 2010 15:25
-
-
Save markbates/483101 to your computer and use it in GitHub Desktop.
A Watchr script for rails, rspec, and cucumber
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 = "Watchr Test Results" | |
puts message | |
image = message.match(/\s0\s(errors|failures)/) ? "~/.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 run(cmd) | |
puts(cmd) | |
`#{cmd}` | |
end | |
def run_spec_file(file) | |
system('clear') | |
result = run(%Q(ruby -I"lib:spec" -rubygems #{file})) | |
growl result.split("\n").last rescue nil | |
puts result | |
end | |
def run_all_specs | |
system('clear') | |
result = run "rake spec" | |
growl result.split("\n").last rescue nil | |
puts result | |
end | |
def run_all_features | |
system('clear') | |
system("cucumber") | |
end | |
def related_spec_files(path) | |
Dir['spec/**/*.rb'].select { |file| file =~ /#{File.basename(path).split(".").first}_spec.rb/ } | |
end | |
def run_suite | |
run_all_specs | |
run_all_features | |
end | |
watch('spec/spec_helper\.rb') { run_all_specs } | |
watch('spec/.*/.*_spec\.rb') { |m| run_spec_file(m[0]) } | |
watch('app/.*/.*\.rb') { |m| related_spec_files(m[0]).map {|tf| run_spec_file(tf) } } | |
watch('features/.*/.*\.feature') { run_all_features } | |
# Ctrl-\ | |
Signal.trap 'QUIT' do | |
puts " --- Running all specs ---\n\n" | |
run_all_specs | |
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 |
Great script! But I got the message:
ruby -I"lib:spec" -rubygems spec/controllers/blogs_controller_spec.rb
0 examples, 0 failures
sh: Illegal option -w
No examples found.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great script! Thanks :)