Sha256: 788f2795533e8bb59e5ae6f2d547557695b58305facb28f07b5aed63fa878706
Contents?: true
Size: 428 Bytes
Versions: 25
Compression:
Stored size: 428 Bytes
Contents
guard :rubocop do watch(/.+\.rb$/) watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) } end guard :minitest, all_after_pass: true, focus_on_failed: true, env: { 'NO_SIMPLECOV' => 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 & 2 rubygems