From bc7b6d6f1558bc8bc4b46816887a39bb5c8cf8be Mon Sep 17 00:00:00 2001 From: John Poulin Date: Fri, 23 Feb 2018 12:19:31 -0500 Subject: [PATCH] Fixed guardfile to close #321 --- Guardfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guardfile b/Guardfile index ed193e5..e7d5a0f 100755 --- a/Guardfile +++ b/Guardfile @@ -23,7 +23,7 @@ guard "livereload", host: "railsgoat.dev", port: "35727" do end -guard "rspec" do +guard :rspec, cmd: 'bundle exec rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch("spec/spec_helper.rb") { "spec" }