remove unused parentheses

This commit is contained in:
Adam Spiers 2014-04-03 16:20:58 +01:00
parent dabbb24445
commit 49ccaaf757
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ group :rspec do
watch(%r{^Gemfile$}) { all_specs }
watch(%r{^Gemfile.lock$}) { all_specs }
watch(%r{^spec/spec_helper\.rb$}) { all_specs }
watch(%r{^spec/helpers/(.+)\.rb$}) { all_specs }
watch(%r{^spec/fixtures/(.+)\.rb$}) { all_specs }
watch(%r{^spec/helpers/.+\.rb$}) { all_specs }
watch(%r{^spec/fixtures/.+\.rb$}) { all_specs }
watch(%r{^libraries/pacemaker\.rb$}) { all_specs }
watch(%r{^libraries/(.*mixin.*)\.rb$}) { library_specs }
watch(%r{^(spec/.+_spec\.rb)$}) { |m| reload m[1] }