Sha256: 06b55c141497231dbe8ed1ee80cb258db45ab1559bcaafa7e98132f51005328f

Contents?: true

Size: 465 Bytes

Versions: 1

Compression:

Stored size: 465 Bytes

Contents

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

options = {
  cli: '',
  all_after_run: true,
  all_after_pass: true
}

guard :minitest, options do

  watch(%r{^test/(.*)\/?test_(.*)\.rb$})
  watch(%r{^test/(.*)\/?(.*)_test\.rb$})
  watch(%r{^lib/roro/cli/(.+)\.rb$}) { |m| "test/generators/#{m[1]}_test.rb" }

  watch(%r{^test/thor_helper\.rb$})      { 'test' }

  watch(%r{^test/fixtures/files/(.*/)?([^/]+)\.yml$})     { 'test' }

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
roro-0.3.4 Guardfile