From c41970b95ea0bbc5c8ad6d44a89fc201caf03069 Mon Sep 17 00:00:00 2001 From: Ben Langfeld Date: Thu, 22 Jan 2015 19:28:37 -0200 Subject: [PATCH] Correct guard-rspec arguments --- Guardfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guardfile b/Guardfile index a638e93..244ea74 100644 --- a/Guardfile +++ b/Guardfile @@ -1,4 +1,4 @@ -guard 'rspec', :cli => '--format documentation', :all_on_start => true, :all_after_pass => true do +guard 'rspec', cmd: 'bundle exec rspec --format documentation', :all_on_start => true, :all_after_pass => true do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec/" }