Sha256: b9c20678484397aea26f85dc67dce8c8a7443ed1006c4ffc6487b3c9b3eb8a03
Contents?: true
Size: 350 Bytes
Versions: 3
Compression:
Stored size: 350 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'minitest', test_folders: "test" do # with Minitest::Unit watch(%r|^test/(.*)\/?test_(.*)\.rb|) watch(%r|^test/(.*)\/?(.*)_test\.rb|) watch(%r|^lib/(.*)([^/]+)\.rb|) { |m| "test/#{m[1]}test_#{m[2]}.rb" } watch(%r|^test/test_helper\.rb|) { "test" } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
valle-0.0.3 | Guardfile |
valle-0.0.2 | Guardfile |
valle-0.0.1 | Guardfile |