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