Skip to content

Commit

Permalink
Make guard work
Browse files Browse the repository at this point in the history
  • Loading branch information
webgago committed Feb 15, 2014
1 parent c029324 commit 15a34f7
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 @@ -3,7 +3,7 @@

guard :rspec do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }

# Rails example
Expand Down

0 comments on commit 15a34f7

Please sign in to comment.