diff options
| author | Alban Peignier | 2012-03-11 11:54:00 +0100 | 
|---|---|---|
| committer | Alban Peignier | 2012-03-11 11:54:12 +0100 | 
| commit | dc8a6f7f9182996ea3f39986b45c3a71927a8e4a (patch) | |
| tree | f6c2e5c48a896dc43f8c0795eb1f557b82483c80 /Guardfile | |
| parent | ae88454853f146acc6f1368a14e1180be2650d03 (diff) | |
| download | chouette-core-dc8a6f7f9182996ea3f39986b45c3a71927a8e4a.tar.bz2 | |
Add validations. Fixes specs
Diffstat (limited to 'Guardfile')
| -rw-r--r-- | Guardfile | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/Guardfile b/Guardfile new file mode 100644 index 000000000..1cba9ca4a --- /dev/null +++ b/Guardfile @@ -0,0 +1,19 @@ +# 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 +  | 
