Removed notification settings from project so that user can set them in

~/.guard.rb instead.
This commit is contained in:
Jeremy Cook
2014-01-04 16:54:35 -05:00
parent e1f85973c1
commit 5c5d204d15

View File

@@ -1,9 +1,6 @@
guard :rspec do guard :rspec, :cmd => 'bundle exec rspec' do
watch(%r{^spec/.+_spec\.rb$}) watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch(%r{^lib/homesick/.*\.rb}) { "spec" } watch(%r{^lib/homesick/.*\.rb}) { "spec" }
watch('spec/spec_helper.rb') { "spec" } watch('spec/spec_helper.rb') { "spec" }
notification :tmux, display_message: true
end end