Sha256: 8594b004726be4ef128c9aec9f572df1602f0d3bf13f3ec61246e0eddacb690b
Contents?: true
Size: 466 Bytes
Versions: 7
Compression:
Stored size: 466 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme options = { cli: '', all_after_run: false } guard :minitest, options do # with Minitest::Unit 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
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
roro-0.3.2 | Guardfile |
roro-0.3.1 | Guardfile |
roro-0.3.0 | Guardfile |
roro-0.2.5 | Guardfile |
roro-0.2.4 | Guardfile |
roro-0.2.2 | Guardfile |
roro-0.2.1 | Guardfile |