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
consadole_aggregator-0.2.5 Guardfile
taskmapper-github-0.11.1 Guardfile
consadole_aggregator-0.2.4 Guardfile
consadole_aggregator-0.2.3 Guardfile
consadole_aggregator-0.2.2 Guardfile
consadole_aggregator-0.2.1 Guardfile
taskmapper-github-0.11.0 Guardfile
homura-0.1.2 Guardfile
leadlight-0.1.0 Guardfile
taskmapper-github-0.10.4 Guardfile
taskmapper-github-0.10.3 Guardfile
taskmapper-github-0.10.2 Guardfile
active_data-0.1.0 Guardfile
ninja-model-0.9.3 Guardfile
billysbilling-rails-1.1.2 Guardfile
billysbilling-rails-1.1.1 Guardfile
billysbilling-rails-1.1.0 Guardfile
fontana-0.0.1.rc1 Guardfile
elfproef-0.1.4 Guardfile
railsthemes-1.2.0 Guardfile