From 0cf6332e7cc6992295f79e6fce24549a2bef5625 Mon Sep 17 00:00:00 2001 From: Durran Jordan Date: Mon, 15 Dec 2014 10:48:54 +0100 Subject: [PATCH] Fix guardfile for latest guard --- Guardfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guardfile b/Guardfile index f0db299..0ba7c10 100644 --- a/Guardfile +++ b/Guardfile @@ -2,7 +2,7 @@ guard( "rspec", all_after_pass: false, - cli: "--fail-fast --tty --format documentation --colour") do + cmd: "bundle exec rspec --fail-fast --tty --format documentation --colour") do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |match| "spec/#{match[1]}_spec.rb" }