From 5c5d204d156c0b932db8933c986df92d99312114 Mon Sep 17 00:00:00 2001 From: Jeremy Cook Date: Sat, 4 Jan 2014 16:54:35 -0500 Subject: [PATCH] Removed notification settings from project so that user can set them in ~/.guard.rb instead. --- Guardfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Guardfile b/Guardfile index ee15012..2823109 100644 --- a/Guardfile +++ b/Guardfile @@ -1,9 +1,6 @@ -guard :rspec do +guard :rspec, :cmd => 'bundle exec rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/homesick/.*\.rb}) { "spec" } watch('spec/spec_helper.rb') { "spec" } - - notification :tmux, display_message: true end -