Skip to content

Commit

Permalink
Correct spec path in Guardfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Evans committed Nov 17, 2012
1 parent b6d474e commit 4b4e103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Guardfile
Expand Up @@ -5,12 +5,12 @@ end

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" }
end

guard 'yard' do
watch(%r{app/.+\.rb})
watch(%r{lib/.+\.rb})
watch(%r{ext/.+\.c})
end
end

0 comments on commit 4b4e103

Please sign in to comment.