Sha256: cd4acd09ca6a9bb6e1875b2726458e82fda0599d715200f3f496361d9fb935d3

Contents?: true

Size: 453 Bytes

Versions: 24

Compression:

Stored size: 453 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$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { 'spec' }

  watch(%r{^spec/support/(.+)\.rb$})                  { 'spec' }
  watch('config/routes.rb')                           { 'spec/routing' }
  watch('app/controllers/application_controller.rb')  { 'spec/controllers' }
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
poms-3.0.0 Guardfile
poms-2.6.0 Guardfile
poms-2.5.1 Guardfile
poms-2.5.0 Guardfile
poms-2.4.0 Guardfile
poms-2.3.1 Guardfile
poms-2.3.0 Guardfile
poms-2.2.1 Guardfile
poms-2.2.0 Guardfile
poms-2.1.3 Guardfile
poms-2.1.2.1 Guardfile
poms-2.1.2 Guardfile
poms-2.1.1 Guardfile
poms-2.1.0 Guardfile
poms-2.0.1 Guardfile
poms-2.0.0 Guardfile
poms-2.0.0.b Guardfile
poms-2.0.0.a Guardfile
poms-1.2.2 Guardfile
poms-1.2.1 Guardfile