Sha256: e540d9285c40e5351e1a99227493e74e45c995bdb0edb94169fa9d29f4a17054

Contents?: true

Size: 477 Bytes

Versions: 4

Compression:

Stored size: 477 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

# directories %(app lib config test spec feature)
guard :rubocop, :all_on_start => false, :keep_failed => false do
  watch(/.+\.(gemspec|rake|rb)$/)
  watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

guard :minitest do
  watch(%r{^test/.+_test\.rb$})
  watch('test/test_helper.rb')  { 'test' }

  # Non-rails
  watch(%r{^lib/ndr_support/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ndr_support-3.3.0 Guardfile
ndr_support-3.2.1 Guardfile
ndr_support-3.2.0 Guardfile
ndr_support-3.1.1 Guardfile