Sha256: 85b9b8bc25ca089501b90cffe29e5ea72f6dcd907ea14980f2da7645a9c74e00

Contents?: true

Size: 358 Bytes

Versions: 6

Compression:

Stored size: 358 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$})        { 'spec' }
  watch('lib/mailroute.rb')        { 'spec' }
  watch('spec/spec_helper.rb')     { 'spec' }
#  watch(%r{^spec/vcr_cassettes})  { 'spec' }
  watch(%r{^spec/support/.*\.rb$}) { 'spec' }
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mailroute-0.0.6 Guardfile
mailroute-0.0.5 Guardfile
mailroute-0.0.4 Guardfile
mailroute-0.0.3 Guardfile
mailroute-0.0.2 Guardfile
mailroute-0.0.1 Guardfile