zooniverse/Talk-Api

View on GitHub
Guardfile

Summary

Maintainability
Test Coverage
guard :rspec, cmd: 'spring rspec' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})                           { |m| "spec/lib/#{ m[1] }_spec.rb" }
  watch('spec/spec_helper.rb')                        { 'spec' }
  watch(%r{^app/(.+)\.rb$})                           { |m| "spec/#{ m[1] }_spec.rb" }
  watch(%r{^spec/support/(.+)\.rb$})                  { 'spec' }
  watch('config/routes.rb')                           { 'spec/routing' }
  watch('app/controllers/application_controller.rb')  { 'spec/controllers' }
  watch('spec/spec_helper.rb')                        { 'spec' }
end