Sha256: 6112b3c00c3370570ec47aa415e0d6976ab240a10adb65558ea47975b50fe839
Contents?: true
Size: 598 Bytes
Versions: 62
Compression:
Stored size: 598 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/factories.rb') watch('spec/spec_helper.rb') { :rspec } watch('test/test_helper.rb') { :test_unit } watch(%r{features/support/}) { :cucumber } end
Version data entries
62 entries across 62 versions & 1 rubygems