-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.watchr
61 lines (51 loc) · 1.49 KB
/
spec.watchr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
ENV["WATCHR"] = "1"
system 'clear'
def growl(message)
growlnotify = `which growlnotify`.chomp
title = "Watchr spec Results"
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 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 "bundle exec padrino rake spec"
growl result.split("\n").last rescue nil
puts result
end
watch("^lib.*/(.*)\.rb") { |m| run_spec_file("spec/lib/#{m[1]}_spec.rb") }
watch("spec.*/spec_helper\.rb") { run_all_specs }
watch('spec/(.*).*_spec\.rb') { |m| run_spec_file(m[0]) }
# Web specs
watch("^app/controllers/(.*).rb") { |m| run_spec_file("spec/app/controllers/#{m[1]}_controller_spec.rb")}
watch("^app/models/(.*).rb") { |m| run_spec_file("spec/app/models/#{m[1]}_spec.rb")}
# 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
@interrupted = false
# raise Interrupt, nil # let the run loop catch it
run_all_specs
end
end