Sha256: 73488aa18622fd6f3d49c30eeccdf84abc708a7486c81e833c0957b65566dbcf
Contents?: true
Size: 431 Bytes
Versions: 4
Compression:
Stored size: 431 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/shoes/mock/(.+)\.rb$}) { |m| "spec/shoes/#{m[1]}_spec.rb" } watch(%r{^lib/shoes/swt/(.+)\.rb$}) { |m| "spec/swt_shoes/#{m[1]}_spec.rb" } watch('lib/shoes/dsl.rb') { |m| "spec/swt_shoes/dsl_spec.rb" } end
Version data entries
4 entries across 4 versions & 3 rubygems
Version | Path |
---|---|
shoes-4.0.0.pre2 | Guardfile |
shoes-swt-4.0.0.pre2 | Guardfile |
shoes-dsl-4.0.0.pre2 | Guardfile |
shoes-4.0.0.pre1 | Guardfile |