ensure exact extension matches on some regexps

This commit is contained in:
John Bintz 2011-06-06 10:01:46 -04:00
parent 318b09c6f0
commit 8758edcd09
1 changed files with 3 additions and 3 deletions

View File

@ -7,9 +7,9 @@ spec_location = "spec/javascripts/%s_spec"
# spec_location = "spec/javascripts/%sSpec" # spec_location = "spec/javascripts/%sSpec"
guard 'jasmine-headless-webkit' do guard 'jasmine-headless-webkit' do
watch(%r{^app/views/.*\.jst}) watch(%r{^app/views/.*\.jst$})
watch(%r{^public/javascripts/(.*)\.js}) { |m| newest_js_file(spec_location % m[1]) } watch(%r{^public/javascripts/(.*)\.js$}) { |m| newest_js_file(spec_location % m[1]) }
watch(%r{^app/assets/javascripts/(.*)\.(js|coffee)}) { |m| newest_js_file(spec_location % m[1]) } watch(%r{^app/assets/javascripts/(.*)\.(js|coffee)$}) { |m| newest_js_file(spec_location % m[1]) }
watch(%r{^spec/javascripts/(.*)_spec\..*}) { |m| newest_js_file(spec_location % m[1]) } watch(%r{^spec/javascripts/(.*)_spec\..*}) { |m| newest_js_file(spec_location % m[1]) }
end end