Sha256: f0dd5ad2cdfec63d4d1e1d696626885c0c8624127c13d906b5eb00e584f3490b

Contents?: true

Size: 390 Bytes

Versions: 20

Compression:

Stored size: 390 Bytes

Contents

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

guard :rspec, cmd: 'bundle exec rspec' do
  watch(%r{^spec/.+_spec\.rb$})
  # watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch(%r{^lib/(.+)\.rb$})     { 'spec' }
  watch('spec/spec_helper.rb')  { 'spec' }
  watch(/spec\/fixtures\/(.+)/) { 'spec' }
  watch('Guardfile')            { 'spec' }
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
dbf-4.1.2 Guardfile
dbf-4.1.1 Guardfile
dbf-4.0.1 Guardfile
dbf-4.0.0 Guardfile
dbf-3.1.3 Guardfile
dbf-3.1.2 Guardfile
dbf-3.1.1 Guardfile
dbf-3.1.0 Guardfile
dbf-3.0.8 Guardfile
dbf-3.0.7 Guardfile
dbf-3.0.5 Guardfile
dbf-3.0.4 Guardfile
dbf-3.0.3 Guardfile
dbf-3.0.2 Guardfile
dbf-3.0.1 Guardfile
dbf-3.0.0 Guardfile
dbf-2.0.13 Guardfile
dbf-2.0.12 Guardfile
dbf-2.0.11 Guardfile
dbf-2.0.10 Guardfile