Guardfile in git_helper-3.6.1 vs Guardfile in git_helper-3.6.2
- old
+ new
@@ -1,7 +1,7 @@
# frozen_string_literal: true
guard :rspec, cmd: 'bundle exec rspec', all_on_start: true do
+ watch('spec/spec_helper.rb') { 'spec' }
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch(%r{^spec/.+_spec\.rb$})
- watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
- watch('spec/spec_helper.rb') { 'spec' }
end