-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwatchr.rb
More file actions
68 lines (55 loc) · 1.54 KB
/
watchr.rb
File metadata and controls
68 lines (55 loc) · 1.54 KB
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
62
63
64
65
66
67
68
ENV["WATCHR"] = "1"
system 'clear'
def growl(message)
growlnotify = `which growlnotify`.chomp
title = "Watchr Test Results"
image_path = "~/.watchr_images/"
image = case message
when /([1-9]\d+|[1-9]) fail(ed|ures?)/ then 'failed'
when /([1-9]\d+|[1-9]) errors?/ then 'error'
when /([1-9]\d+|[1-9]) pending/ then 'pending'
when /0 fail(ed|ures?)/ then 'passed'
when /([1-9]\d+|[1-9]) passed/ then 'passed'
else
'info'
end
options = "-w -n Watchr --image '#{File.expand_path("#{image_path}#{image}.png")}' -m '#{message}' '#{title}'"
system %(#{growlnotify} #{options} &)
end
def format_result(result, output_from = :rspec)
result = result.split("\n")
output_from == :rspec ? result.last : result[-3..-2].join("\n")
end
def run(cmd)
puts(cmd)
`#{cmd}`
end
def run_spec_file(file)
system('clear')
result = run(%Q(rspec #{file}))
growl format_result(result) rescue nil
puts result
end
def run_all_specs
system('clear')
result = run "rake spec"
growl format_result(result) rescue nil
puts result
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
end
watch('spec/factories\.rb') { run_suite }
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) } }
# Ctrl-\
Signal.trap 'QUIT' do
puts " --- Running all specs ---\n\n"
run_suite
end
# Ctrl-C
Signal.trap 'INT' do abort("\n") end
puts "Watching ..."