Skip to content

Commit

Permalink
guardfile wants a regex
Browse files Browse the repository at this point in the history
  • Loading branch information
infused committed Mar 6, 2015
1 parent 0c8e147 commit 26f2eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ guard :rspec do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { 'spec' }
watch('spec/fixtures/(.+)') { 'spec' }
watch(/spec\/fixtures\/(.+)/) { 'spec' }
watch('Guardfile') { 'spec' }
end

0 comments on commit 26f2eee

Please sign in to comment.