Sha256: 4f6bcfbbf0e24b3a35dac4a434d79e632d84f40b1665c9d6cdf221cc42a7c1ab
Contents?: true
Size: 322 Bytes
Versions: 2
Compression:
Stored size: 322 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard :rspec, :cli => "-c --tty --format Fuubar", :all_on_start => true, :focus_on_failed => true 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sonic-0.0.2 | Guardfile |
sonic-0.0.1 | Guardfile |