Sha256: f78880867d6bbc147ac54bfe72a7a258c59a5e2bd41c0217539cfc421dc29738

Contents?: true

Size: 420 Bytes

Versions: 17

Compression:

Stored size: 420 Bytes

Contents

guard 'minitest' do
  watch(%r|^spec/(.*)_spec\.rb|)
  watch(%r|^lib/(.*)([^/]+)\.rb|)     { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
  watch(%r|^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

17 entries across 17 versions & 1 rubygems

Version Path
test-kitchen-1.1.1 Guardfile
test-kitchen-1.1.0 Guardfile
test-kitchen-1.0.0 Guardfile
test-kitchen-1.0.0.rc.2 Guardfile
test-kitchen-1.0.0.rc.1 Guardfile
test-kitchen-1.0.0.beta.4 Guardfile
test-kitchen-1.0.0.beta.3 Guardfile
test-kitchen-1.0.0.beta.2 Guardfile
test-kitchen-1.0.0.beta.1 Guardfile
test-kitchen-1.0.0.alpha.7 Guardfile
test-kitchen-1.0.0.alpha.6 Guardfile
test-kitchen-1.0.0.alpha.5 Guardfile
test-kitchen-1.0.0.alpha.4 Guardfile
test-kitchen-1.0.0.alpha.3 Guardfile
test-kitchen-1.0.0.alpha.2 Guardfile
test-kitchen-1.0.0.alpha.1 Guardfile
test-kitchen-1.0.0.alpha.0 Guardfile