Sha256: 8a2df0d65d052604a6d44bcbe9bc7b0ec6b5cd244a3518f9a80dcf8f32bfea0c

Contents?: true

Size: 374 Bytes

Versions: 19

Compression:

Stored size: 374 Bytes

Contents

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

guard 'puma' do
  watch('Gemfile.lock')
  watch(%r{^config|lib|api/.*})
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

19 entries across 19 versions & 1 rubygems

Version Path
wd_sinatra-2.0.0 templates/Guardfile
wd_sinatra-1.0.6 templates/Guardfile
wd_sinatra-1.0.5 templates/Guardfile
wd_sinatra-1.0.4 templates/Guardfile
wd_sinatra-1.0.3 templates/Guardfile
wd_sinatra-1.0.2 templates/Guardfile
wd_sinatra-1.0.1 templates/Guardfile
wd_sinatra-1.0.0 templates/Guardfile
wd_sinatra-0.3.2 templates/Guardfile
wd_sinatra-0.3.1 templates/Guardfile
wd_sinatra-0.3.0 templates/Guardfile
wd_sinatra-0.2.6 templates/Guardfile
wd_sinatra-0.2.5 templates/Guardfile
wd_sinatra-0.2.4 templates/Guardfile
wd_sinatra-0.2.3 templates/Guardfile
wd_sinatra-0.2.2 templates/Guardfile
wd_sinatra-0.2.1 templates/Guardfile
wd_sinatra-0.2.0 templates/Guardfile
wd_sinatra-0.1.0 templates/Guardfile