Sha256: 66334eaa6d2afc311492e0f9c2bea50a78f140c3fb86c59bdbaa0fffc41fdd6b
Contents?: true
Size: 437 Bytes
Versions: 12
Compression:
Stored size: 437 Bytes
Contents
guard :rubocop do watch(/.+\.rb$/) watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) } end guard( :rspec, all_after_pass: false, all_on_start: false, cmd: 'NO_SIMPLECOV=true bundle exec rspec --fail-fast --format documentation' ) do watch(%r{spec/.+_spec\.rb$}) watch(%r{lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { 'spec' } watch(%r{^spec/support/.+\.rb$}) { 'spec' } end
Version data entries
12 entries across 12 versions & 1 rubygems