Sha256: 6f7d9d0f3a700239122a791c0fc7696ef942d8bbc4dcffd2b444b0f4e48d7dcf
Contents?: true
Size: 295 Bytes
Versions: 10
Compression:
Stored size: 295 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', cmd: 'rspec', all_on_start: true, all_after_pass: false do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
10 entries across 10 versions & 1 rubygems