Guardfile in newrelic_rpm-6.7.0.359 vs Guardfile in newrelic_rpm-6.8.0.360

- old
+ new

@@ -1,5 +1,11 @@ -guard :minitest, :test_folders => ['test/new_relic'], :all_after_pass => false do +guard_options = { + spring: "bundle exec ruby", + test_folders: ['test/new_relic', 'test'], + all_after_pass: false +} + +guard :minitest, guard_options do watch(%r{^lib/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" } watch(%r{^test/.+_test\.rb$}) watch(%r{^test/rum/.*}) { "test/new_relic/rack/browser_monitoring_test.rb" } watch('test/test_helper.rb') { "test/new_relic" } watch('test/agent_helper.rb') { "test/new_relic" }