Sha256: fa86c1dd7273a8b22f0cf16e77e43848c3e2e1699d8f1712b7330a8b7da20321
Contents?: true
Size: 316 Bytes
Versions: 9
Compression:
Stored size: 316 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :cli => "--color --format nested --fail-fast --drb", :notification => 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
9 entries across 9 versions & 1 rubygems