Sha256: e96c5e07330a52cd3674a8e78e1ae1670aae87adfc51fcfaea18b8645081b000
Contents?: true
Size: 303 Bytes
Versions: 28
Compression:
Stored size: 303 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :version => 2, :all_on_start => false, :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
28 entries across 28 versions & 1 rubygems