Sha256: 7a4b1cf54e3355d372a065991b07e552d43ee862f422de2a150375acd51ad553
Contents?: true
Size: 408 Bytes
Versions: 25
Compression:
Stored size: 408 Bytes
Contents
if ENV['RUBOCOP'] guard :rubocop do watch(/.+\.rb$/) watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) } end end guard :minitest, all_after_pass: true, focus_on_failed: true do watch(%r{^test/(.*)_test\.rb}) watch(%r{^lib/(.+)\.rb}) { |m| "test/lib/#{m[1]}_test.rb" } watch(%r{^test/test_helper\.rb}) { 'test' } watch(%r{^lib/(.+)all\.rb}) { 'test' } end
Version data entries
25 entries across 25 versions & 1 rubygems