Sha256: eb98b0c1e4d9674892e32474d2ef3263878d0d077c55b8672e2a2eca2bc954a2

Contents?: true

Size: 965 Bytes

Versions: 158

Compression:

Stored size: 965 Bytes

Contents

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

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

  # Rails example
  watch(%r{^app/(.+)\.rb$})                           { |m| "spec/#{m[1]}_spec.rb" }
  watch(%r{^app/(.*)(\.erb|\.haml)$})                 { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
  watch(%r{^app/controllers/(.+)_(controller)\.rb$})  { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
  watch(%r{^spec/support/(.+)\.rb$})                  { "spec" }
  watch('config/routes.rb')                           { "spec/routing" }
  watch('app/controllers/application_controller.rb')  { "spec/controllers" }
  # Capybara request specs
  watch(%r{^app/views/(.+)/.*\.(erb|haml)$})          { |m| "spec/requests/#{m[1]}_spec.rb" }
end

Version data entries

158 entries across 158 versions & 35 rubygems

Version Path
easyeditor-0.0.3 Guardfile
easyeditor-0.0.2 Guardfile
leadlight-0.0.4 Guardfile
insparq-0.0.1 Guardfile
jenkins-client-0.0.1 Guardfile
ninja-model-0.9.0 Guardfile
leadlight-0.0.3 Guardfile
ninja-model-0.8.1 Guardfile
ninja-model-0.8.0 Guardfile
benchwarmer-0.0.3 Guardfile
reach-api-1.0.1 Guardfile
reach-api-1.0.0 Guardfile
ninja-model-0.7.3 Guardfile
ninja-model-0.7.2 Guardfile
ninja-model-0.7.1 Guardfile
leadlight-0.0.2 Guardfile
ninja-model-0.7.0 Guardfile
rollable-0.1.3 spec/rollable_test/Guardfile