Sha256: 4dfe770e8321786786e9ebba622c8d5bbb62fc59611e7d9389eb3b1e649adff2

Contents?: true

Size: 348 Bytes

Versions: 5

Compression:

Stored size: 348 Bytes

Contents

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

guard 'cucumber' do
  watch(%r{^lib/.+$})                 { 'features' }
  watch(%r{^features/.+\.feature$})
  watch(%r{^features/support/.+$})    { 'features' }
  watch(%r{^features/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
nagiosplugin-0.0.5 Guardfile
nagiosplugin-0.0.4 Guardfile
nagiosplugin-0.0.3 Guardfile
nagiosplugin-0.0.2 Guardfile
nagiosplugin-0.0.1 Guardfile