Sha256: 2190c755843e448d211c324024e3797f02ecb6b58f8107f91635645b836c6281

Contents?: true

Size: 370 Bytes

Versions: 2

Compression:

Stored size: 370 Bytes

Contents

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

guard 'puma' do
  watch('Gemfile.lock')
  watch(%r{^config|lib/.*})
end

guard 'minitest', :test_file_patterns => '*_test.rb' do
  watch(%r|^test/(.*)_test\.rb|)
  watch(%r{^api/(.*/)?([^/]+)\.rb$})  { |m| "test/api/#{m[1]}#{m[2]}_test.rb" }
  watch(%r|^test/test_helper\.rb|)    { "test" }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wd_sinatra-0.0.2 templates/Guardfile
wd_sinatra-0.0.1 templates/Guardfile