Sha256: 19f4675df3c72cff21fad07ea73e6d65c06a0efe2ecd1c13a456cd61f0c1e365

Contents?: true

Size: 1.46 KB

Versions: 16

Compression:

Stored size: 1.46 KB

Contents

guard 'spork', :wait => 60, :cucumber => false, :rspec_env => { 'RAILS_ENV' => 'test' } do
  watch('config/application.rb')
  watch('config/environment.rb')
  watch(%r{^config/environments/.+\.rb$})
  watch(%r{^config/initializers/.+\.rb$})
  watch('spec/spec_helper.rb')
  watch(%r{^spec/support/.+\.rb$})
  watch(%r{^vendor/extensions/(.+)/spec/support/.+\.rb$})
end

guard 'rspec', :version => 2, :cli => (['~/.rspec', '.rspec'].map{|f| File.read(File.expand_path(f)).split("\n").join(' ') if File.exists?(File.expand_path(f))}.join(' ')) 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/requests/#{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

16 entries across 16 versions & 5 rubygems

Version Path
refinerycms-contacts-0.2.0 Guardfile
refinerycms-menus-2.0.7 Guardfile
refinerycms-menus-2.0.6 Guardfile
refinerycms-core-2.0.10 lib/generators/refinery/engine/templates/Guardfile
refinerycms-contacts-0.1.2 Guardfile
refinerycms-contacts-0.1.1 Guardfile
refinerycms-contacts-0.1.0 Guardfile
refinerycms-core-2.0.9 lib/generators/refinery/engine/templates/Guardfile
refinerycms-sl-videos-2.0.1 Guardfile
refinerycms-sl-videos-2.0.0 Guardfile
refinerycms-core-2.0.8 lib/generators/refinery/engine/templates/Guardfile
refinerycms-core-2.0.7 lib/generators/refinery/engine/templates/Guardfile
refinerycms-core-2.0.6 lib/generators/refinery/engine/templates/Guardfile
refinerycms-core-2.0.5 lib/generators/refinery/engine/templates/Guardfile
refinerycms-bookings-2.0.3 Guardfile
refinerycms-core-2.0.4 lib/generators/refinery/engine/templates/Guardfile