Sha256: dbc4280f42d304b133319057416c665faad27dcfaca699ad53f11967598e3149
Contents?: true
Size: 681 Bytes
Versions: 2
Compression:
Stored size: 681 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme ignore /\/.#.+/ guard :rspec do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end # guard 'spork', :cucumber_env => { 'RAILS_ENV' => 'test' }, :rspec_env => { 'RAILS_ENV' => 'test' } do # watch('config/application.rb') # watch('config/environment.rb') # watch('config/environments/test.rb') # watch(%r{^config/initializers/.+\.rb$}) # watch('Gemfile.lock') # watch('spec/spec_helper.rb') { :rspec } # watch('test/test_helper.rb') { :test_unit } # watch(%r{features/support/}) { :cucumber } # end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mongoid_geospatial-3.1.0 | Guardfile |
mongoid_geospatial-3.0.0 | Guardfile |