Sha256: 09f3fee9db5965a6719f125ed667fb3738717cc24c01c1a8718d30865402270b
Contents?: true
Size: 339 Bytes
Versions: 9
Compression:
Stored size: 339 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme interactor :simple guard 'jruby-minitest', :spec_paths => ["test"], :all_on_start => false do watch(%r{^test/(.*)\/?test_(.*)\.rb$}) watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/test_#{m[2]}.rb" } watch(%r{^test/test_helper\.rb$}) { 'test' } end
Version data entries
9 entries across 9 versions & 1 rubygems