Sha256: ef37442f24b5ca319c94106705bec68c8b216058a38522142201619da2458133
Contents?: true
Size: 463 Bytes
Versions: 10
Compression:
Stored size: 463 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'minitest' do # with Minitest::Unit watch(%r|^test/(.*)test\.rb|) watch(%r|^lib/(.*)([^/]+)\.rb|) { |m| "test/#{m[1]}#{m[2]}_test.rb" } watch(%r|^test/test_helper\.rb|) { "test" } # with Minitest::Spec watch(%r|^spec/(.*)_spec\.rb|) watch(%r|^lib/(.*)([^/]+)\.rb|) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" } watch(%r|^spec/spec_helper\.rb|) { "spec" } end
Version data entries
10 entries across 10 versions & 1 rubygems