Sha256: 1baa173cf149ff1a89569250f9b6856513b85d622e034c0136bb5c9c2c35648b
Contents?: true
Size: 480 Bytes
Versions: 3
Compression:
Stored size: 480 Bytes
Contents
guard 'rspec' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/(.+)/(.+)\.rb$}) { |m| "spec/#{m[1]}/#{m[2]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end guard 'cucumber' do watch(%r{^features/.+\.feature$}) watch(%r{^features/support/.+$}) { 'features' } watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sqldump-0.0.4 | Guardfile |
sqldump-0.0.3 | Guardfile |
sqldump-0.0.2 | Guardfile |