Sha256: 43305e3e1dc4dc789389de6f14744f42762097a3483a72a693c2f385bf17190a
Contents?: true
Size: 298 Bytes
Versions: 12
Compression:
Stored size: 298 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard :rspec, all_after_pass: true, all_on_start: true do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/vzaar.rb$}) { "spec" } watch(%r{^lib/vzaar/(.+)\.rb$}) { "spec" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
12 entries across 12 versions & 1 rubygems