Sha256: 27d3b63f66cd93d92df7661e093e53f8ac35d728ff43b0300a1b34d5e7bcd16a

Contents?: true

Size: 448 Bytes

Versions: 4

Compression:

Stored size: 448 Bytes

Contents

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

options = {
  cli: '-f',
  all_on_start: true,
  all_after_pass: true
}

guard :minitest, options do

  watch(%r{^test/(.*)\/?test_(.*)\.rb$})
  watch(%r{^test/(.*)\/?(.*)_test\.rb$})
  watch(%r{^lib/roro/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" }
  watch(%r{^test/thor_helper\.rb$})      { 'test' }
  watch(%r{^test/fixtures/files/(.*/)?([^/]+)\.yml$})     { 'test' }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
roro-0.3.14 Guardfile
roro-0.3.13 Guardfile
roro-0.3.12 Guardfile
roro-0.3.9 Guardfile