Sha256: 902a8cc1e313688a384f9c9df05e464938ddbba95344925d62fc1532c5f1f9d2
Contents?: true
Size: 288 Bytes
Versions: 14
Compression:
Stored size: 288 Bytes
Contents
# A sample Guardfile # 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('spec/spec_helper.rb') { "spec/" } watch('spec/data/.+') { "spec/" } end
Version data entries
14 entries across 14 versions & 1 rubygems