Sha256: a12bb75081bcc589ca9fd0c916a0bfbc402b27e04dc286f1b3558875dae3dac4

Contents?: true

Size: 1.25 KB

Versions: 12

Compression:

Stored size: 1.25 KB

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard :test do
  watch(%r{^lib/(.+)\.rb$})     { |m| "test/#{m[1]}_test.rb" }
  watch(%r{^test/.+_test\.rb$})
  watch('test/test_helper.rb')  { "test" }
  watch(%r{/test\/unit\/(.+)_test.rb/})
  watch('../lib/dailycred/acts_as_dailycred.rb') { "test/unit/user_test.rb"}
  Dir[File.expand_path('../../lib/dailycred/*.rb', __FILE__)].each do |f|
    watch(f) {"test/unit/user_test.rb"}
  end

  # Rails example
  watch(%r{^app/models/(.+)\.rb$})                   { |m| "test/unit/#{m[1]}_test.rb" }
  watch(%r{^app/controllers/(.+)\.rb$})              { |m| "test/functional/#{m[1]}_test.rb" }
  watch(%r{^app/views/.+\.rb$})                      { "test/integration" }
  watch('app/controllers/application_controller.rb') { ["test/functional", "test/integration"] }
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')
  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

12 entries across 12 versions & 1 rubygems

Version Path
dailycred-0.1.7 dummy/Guardfile
dailycred-0.1.6 dummy/Guardfile
dailycred-0.1.5 dummy/Guardfile
dailycred-0.1.461 dummy/Guardfile
dailycred-0.1.46 dummy/Guardfile
dailycred-0.1.45 dummy/Guardfile
dailycred-0.1.44 dummy/Guardfile
dailycred-0.1.43 dummy/Guardfile
dailycred-0.1.42 dummy/Guardfile
dailycred-0.1.41 dummy/Guardfile
dailycred-0.1.4 dummy/Guardfile
dailycred-0.1.36 dummy/Guardfile