Sha256: 2ce3ad716606b2baf9518435c58641d4a575e4817fbedcb9ce871d3f385cf474
Contents?: true
Size: 570 Bytes
Versions: 5
Compression:
Stored size: 570 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/active_shepherd/(.*/)?([^/]+)\.rb$}) { |m| "test/unit/#{m[1]}#{m[2]}_test.rb" } watch(%r{^lib/active_shepherd.rb}) { "test" } watch(%r|^test/test_helper\.rb|) { "test" } watch(%r|^test/integration/project_todo_scenario/(.*)\.rb$|) do "test/integration/project_todo_scenario_test.rb" end watch(%r{^lib/.*\.rb$}) { |m| "test/integration/project_todo_scenario_test.rb" } end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
activeshepherd-0.8.4 | Guardfile |
activeshepherd-0.8.3 | Guardfile |
activeshepherd-0.8.2 | Guardfile |
activeshepherd-0.8.1 | Guardfile |
activeshepherd-0.8.0 | Guardfile |