Sha256: 9485bbf5534dfa8b8b19d494775bd5f61159bca4201d46b8cf5deb5b24fbce96

Contents?: true

Size: 473 Bytes

Versions: 8

Compression:

Stored size: 473 Bytes

Contents

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

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

guard 'minitest' do
  watch(%r|^spec/(.*)_spec\.rb|)
  watch(%r|^lib/compaa/(.*)\.rb|)  { |m| "spec/#{m[1]}_spec.rb" }
  watch(%r|^spec/spec_helper\.rb|) { "spec" }
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
compaa-0.2.0 Guardfile
compaa-0.1.1 Guardfile
compaa-0.0.4 Guardfile
compaa-0.0.3 Guardfile
compaa-0.0.2 Guardfile
compaa-0.0.1.3 Guardfile
compaa-0.0.1.2 Guardfile
compaa-0.0.1.1 Guardfile