Sha256: e345effc145aa8e2c3be81fb4c2adf7069c7fbfbbfad28385de9569e4f2d42b4

Contents?: true

Size: 1.14 KB

Versions: 18

Compression:

Stored size: 1.14 KB

Contents

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

guard 'rspec', :version => 2, :cli => "--color --format nested" do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch(%r{^lib/api_resource/(.+)\.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

18 entries across 18 versions & 3 rubygems

Version Path
api_resource-0.3.4 Guardfile
api_resource-0.3.3 Guardfile
api_resource-0.3.2 Guardfile
api_resource-0.3.1 Guardfile
api_resource-0.3.0 Guardfile
api_resource-0.2.11 Guardfile
api_resource-0.2.10 Guardfile
api_resource-0.2.9 Guardfile
api_resource-0.2.8 Guardfile
api_resource-0.2.7 Guardfile
api_resource-0.2.6 Guardfile
api_resource-0.2.5 Guardfile
api_resource-0.2.4 Guardfile
api_resource-0.2.3 Guardfile
api_resource-0.2.2 Guardfile
api_resource-0.2.1 Guardfile
old_api_resource-0.3.0 Guardfile
resource-0.1.0 Guardfile