Sha256: beb1bcbd16153f393973cad63f280a5184bb32628ca10cab528b71b712de9e7a
Contents?: true
Size: 483 Bytes
Versions: 11
Compression:
Stored size: 483 Bytes
Contents
# More info at https://github.com/guard/guard#readme guard 'rspec', :notification => false 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" } end guard 'spork', :rspec_env => { 'RAILS_ENV' => 'test' } do watch('config/environment.rb') watch('Gemfile') watch('Gemfile.lock') watch('spec/spec_helper.rb') { :rspec } end
Version data entries
11 entries across 11 versions & 1 rubygems