Merge pull request #323 from nvisium-john-poulin/guard-fix

Fixed guardfile to close #321
This commit is contained in:
Ken Johnson
2018-02-25 11:49:13 -05:00
committed by GitHub
+1 -1
View File
@@ -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" }