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