Skip to content

Commit

Permalink
fixes Guardfile to properly watch files in lib/meta_inspector
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimeiniesta committed Nov 3, 2014
1 parent 4862bf8 commit 33cd259
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Guardfile
@@ -1,5 +1,5 @@
guard :rspec, cmd: 'bundle exec rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { 'spec' }
watch(%r{^lib/meta_inspector/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { 'spec' }
end

0 comments on commit 33cd259

Please sign in to comment.