Sha256: bade88402e22af1bbc15e52eb794345d4107d2e4438771fa8be9b9919a6259bd

Contents?: true

Size: 471 Bytes

Versions: 35

Compression:

Stored size: 471 Bytes

Contents

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

guard :rspec 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{^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

35 entries across 35 versions & 2 rubygems

Version Path
hem-1.2.4 Guardfile
hem-1.2.3 Guardfile
hem-1.2.2 Guardfile
hem-1.2.1 Guardfile
hem-1.2.0 Guardfile
hem-1.1.2 Guardfile
hem-1.1.1 Guardfile
hem-1.1.0 Guardfile
hem-1.0.1.beta6 Guardfile
hem-1.0.1.beta5 Guardfile
hem-1.0.1.beta4 Guardfile
hem-1.0.1.beta3 Guardfile
hem-1.0.1.beta2 Guardfile
hem-1.0.1.beta1 Guardfile
hobo-inviqa-0.0.15 Guardfile
hobo-inviqa-0.0.14 Guardfile
hobo-inviqa-0.0.13 Guardfile
hobo-inviqa-0.0.11 Guardfile
hobo-inviqa-0.0.10 Guardfile
hobo-inviqa-0.0.10.pre.rc11 Guardfile