Sha256: daa8fb2bef0b9c9d399dc5c4a35f6e9a5ec6a20db14762130366e922e99e8adf
Contents?: true
Size: 479 Bytes
Versions: 7
Compression:
Stored size: 479 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'spork', :cucumber_env => { 'RAILS_ENV' => 'test' }, :rspec_env => { 'RAILS_ENV' => 'test' } do watch(%r{^lib/}) watch('spec/dummy/config/application.rb') watch('spec/dummy/config/environment.rb') watch(%r{^spec/dummy/config/environments/.+\.rb$}) watch(%r{^spec/dummy/config/initializers/.+\.rb$}) watch('Gemfile') watch('Gemfile.lock') watch('spec/spec_helper.rb') { :rspec } end
Version data entries
7 entries across 7 versions & 1 rubygems