Sha256: 422f9c9b09e9fed17d8ec150eb86786b3e4a8a8651d96ab67c2f4bfa3ca55e20

Contents?: true

Size: 1.04 KB

Versions: 20

Compression:

Stored size: 1.04 KB

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{^spec/.+_spec\.rb$})
  watch(%r{^app/(.+)\.rb$})                           { |m| "spec/#{m[1]}_spec.rb" }
  watch(%r{^lib/(.+)\.rb$})                           { |m| "spec/lib/#{m[1]}_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('spec/spec_helper.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

20 entries across 20 versions & 6 rubygems

Version Path
klout-3.0.3 Guardfile
klout-3.0.2 Guardfile
silencer-0.6.0 Guardfile
hominid-wout-3.0.6 Guardfile
silencer-0.5.0 Guardfile
silencer-0.4.0 Guardfile
silencer-0.3.0 Guardfile
klout-3.0.1 Guardfile
hominid-3.0.5 Guardfile
silencer-0.2.0 Guardfile
klout-3.0.0 Guardfile
klout-2.0.0 Guardfile
klout-1.0.1 Guardfile
hominid-3.0.4 Guardfile
silencer-0.1.0 Guardfile
silencer-0.0.1 Guardfile
cereal_box-0.0.2 Guardfile
cereal_box-0.0.1 Guardfile
import-0.0.3 Guardfile
import-0.0.2 Guardfile