Sha256: b5018a53d26b783aaad86812774db648e0f6c4b8195ae985b28dc2659088a248
Contents?: true
Size: 420 Bytes
Versions: 1
Compression:
Stored size: 420 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', cli: '--format doc --color', keep_failed: false, all_after_pass: false do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch(%r{^lib/(.+)\.rb$}) { |m| "spec/olson_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch(%r{^spec/fixtures/.*\.rb$}) { "spec" } end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
olson-0.0.3 | Guardfile |