Finish coverage of editing

This commit is contained in:
Andrew Tomaka 2013-08-11 13:35:08 -04:00
parent 62f3b10184
commit 9f260a691c
2 changed files with 12 additions and 0 deletions

View file

@ -2,6 +2,8 @@
# More info at https://github.com/guard/guard#readme
guard :rspec do
notification :libnotify, :timeout => 5, :transient => true, :append => false, :urgency => :critical
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }