Sha256: 116a7786142e2082070c7e0904c4f4959a6213d9e3d77dd06e62f6c2c9f4a890

Contents?: true

Size: 289 Bytes

Versions: 5

Compression:

Stored size: 289 Bytes

Contents

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

guard 'rspec', :cli => '--color --format nested', :version => 2 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

5 entries across 5 versions & 1 rubygems

Version Path
sinatra-named-routes-0.1.3 Guardfile
sinatra-named-routes-0.1.2 Guardfile
sinatra-named-routes-0.1.1 Guardfile
sinatra-named-routes-0.1.0 Guardfile
sinatra-named-routes-0.0.1 Guardfile