Sha256: 9e6b71d9aa7e44d5525486a91dcefbeef87914d062cf30c015b9c65c78e8cc91

Contents?: true

Size: 290 Bytes

Versions: 2

Compression:

Stored size: 290 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard :rspec, cmd: 'rspec', all_on_start: true, all_after_pass: true do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})    { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb') { 'spec' }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gem_bootstrap-0.2.7 templates/Guardfile-rspec
gem_bootstrap-0.2.6 templates/Guardfile-rspec