Sha256: e9776ea59305f5983056266fec70e4460323ef1911e78b8d5990a063e3bcc2f8

Contents?: true

Size: 539 Bytes

Versions: 15

Compression:

Stored size: 539 Bytes

Contents

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

guard 'rspec', :cli => '--color' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})           { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')        { "spec" }
end

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

15 entries across 15 versions & 1 rubygems

Version Path
nagiosplugin-2.2.0 Guardfile
nagiosplugin-2.1.1 Guardfile
nagiosplugin-2.1.0 Guardfile
nagiosplugin-2.0.0 Guardfile
nagiosplugin-1.3.0 Guardfile
nagiosplugin-1.2.0 Guardfile
nagiosplugin-1.1.2 Guardfile
nagiosplugin-1.1.1 Guardfile
nagiosplugin-1.1.0 Guardfile
nagiosplugin-1.0.3 Guardfile
nagiosplugin-1.0.2 Guardfile
nagiosplugin-1.0.1 Guardfile
nagiosplugin-1.0.0 Guardfile
nagiosplugin-0.0.7 Guardfile
nagiosplugin-0.0.6 Guardfile