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
hobo-inviqa-0.0.10.pre.rc10 Guardfile
hobo-inviqa-0.0.10.pre.rc9 Guardfile
hobo-inviqa-0.0.10.pre.rc8 Guardfile
hobo-inviqa-0.0.10.pre.rc7 Guardfile
hobo-inviqa-0.0.10.pre.rc6 Guardfile
hobo-inviqa-0.0.10.pre.rc4 Guardfile
hobo-inviqa-0.0.10.pre.rc2 Guardfile
hobo-inviqa-0.0.9 Guardfile
hobo-inviqa-0.0.9.pre.rc2 Guardfile
hobo-inviqa-0.0.9.pre.rc1 Guardfile
hobo-inviqa-0.0.9.pre.alpha Guardfile
hobo-inviqa-0.0.8 Guardfile
hobo-inviqa-0.0.7.pre.rc3 Guardfile
hobo-inviqa-0.0.7.pre.rc2 Guardfile
hobo-inviqa-0.0.7.pre.rc1 Guardfile