Sha256: cca201390ca9048cd89be5c1dad7ef5dadf50dbb0ea6a53ec688a93a3b5b6468

Contents?: true

Size: 565 Bytes

Versions: 18

Compression:

Stored size: 565 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'cucumber', :notification => true, :all_after_pass => false, :cli => '--profile focus' 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' }
  watch(%r{^lib/.+\.rb$})                   { "features" }
  watch(%r{^lib/.+\.tt$})                   { "features" }
  watch(%r{^cucumber.yml$})                 { "features" }
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
testgen-0.8.8 Guardfile
testgen-0.8.7 Guardfile
testgen-0.8.6 Guardfile
testgen-0.8.5 Guardfile
testgen-0.8.4 Guardfile
testgen-0.8.3 Guardfile
testgen-0.8.2 Guardfile
testgen-0.8.1 Guardfile
cwtestgen-0.1.6 Guardfile
cwtestgen-0.1.5 Guardfile
cwtestgen-0.1.4 Guardfile
cwtestgen-0.1.3 Guardfile
cwtestgen-0.1.2 Guardfile
cwtestgen-0.1.1 Guardfile
cwtestgen-0.1 Guardfile
testgen-0.8 Guardfile
testgen-0.7 Guardfile
testgen-0.6 Guardfile