Sha256: 86d4a16fe76012edc263f2161b3259370c0d4d4cf75e09ed98a8da8a7f507359
Contents?: true
Size: 355 Bytes
Versions: 7
Compression:
Stored size: 355 Bytes
Contents
# -*- ruby -*- # More info at https://github.com/guard/guard#readme guard 'rspec', :version => 2 do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^spec/support/(.+)\.rb$}) { "spec/" } watch('spec/spec_helper.rb') { "spec/" } end
Version data entries
7 entries across 7 versions & 1 rubygems