diff options
Diffstat (limited to 'Guardfile')
-rw-r--r-- | Guardfile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Guardfile b/Guardfile deleted file mode 100644 index b8bb85a..0000000 --- a/Guardfile +++ /dev/null @@ -1,10 +0,0 @@ -guard 'rspec', :version => 2, :cli => "--color" do - 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/controllers/#{m[1]}_#{m[2]}_spec.rb", "spec/features/#{m[1]}_spec.rb"] } - watch(%r{^spec/support/(.+)\.rb$}) { "spec" } - watch('spec/spec_helper.rb') { "spec" } - # Capybara feature specs - watch(%r{^app/views/(.+)/.*\.(erb|haml)$}) { |m| "spec/features/#{m[1]}_spec.rb" } -end |