Sha256: e53121fe4eb8adbe8db58b6cb89499af54f8867c537ab2dc92e5708d35c2e6fe

Contents?: true

Size: 443 Bytes

Versions: 13

Compression:

Stored size: 443 Bytes

Contents

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

guard 'rspec', :version => 2 do
  watch('^spec/(.*)_spec.rb')
  watch('^lib/(.*)\.rb')           { |m| "spec/#{m[1]}_spec.rb" }
  watch('^spec/spec_helper.rb')    { "spec" }
end

guard 'cucumber' do
  watch('^features/(.*).feature')
  watch('^features/support')                       { 'features' }
  watch('^features/step_definitions')              { 'features' }
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
vcr-1.11.2 Guardfile
vcr-1.11.1 Guardfile
vcr-1.10.3 Guardfile
vcr-1.10.2 Guardfile
vcr-1.10.0 Guardfile
vcr-1.9.0 Guardfile
vcr-1.8.0 Guardfile
vcr-1.7.2 Guardfile
vcr-1.7.1 Guardfile
vcr-1.7.0 Guardfile
vcr-1.6.0 Guardfile
vcr-1.5.1 Guardfile
vcr-1.5.0 Guardfile