Sha256: 47ccc73b7b57052e1877923d54a79071cf73ab811ae7f4969ad516543219333d

Contents?: true

Size: 699 Bytes

Versions: 9

Compression:

Stored size: 699 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('config/application.rb')
  watch('config/environment.rb')
  watch('config/environments/test.rb')
  watch(%r{^config/initializers/.+\.rb$})
  watch('Gemfile')
  watch('Gemfile.lock')
  watch('spec/spec_helper.rb') { :rspec }
  watch('test/test_helper.rb') { :test_unit }
  watch(%r{features/support/}) { :cucumber }
end

guard 'rspec', :version => 2, :cli => '--drb' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end


Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ero_getter-1.7.0 Guardfile
ero_getter-1.6.3 Guardfile
ero_getter-1.6.2 Guardfile
ero_getter-1.6.1 Guardfile
ero_getter-1.6.0 Guardfile
ero_getter-1.5.1 Guardfile
ero_getter-1.5.0 Guardfile
ero_getter-1.4.0 Guardfile
ero_getter-1.3.9 Guardfile