Skip to content

Commit

Permalink
Correct guard-rspec arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
benlangfeld committed Jan 22, 2015
1 parent 0d2b31d commit c41970b
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
@@ -1,4 +1,4 @@
guard 'rspec', :cli => '--format documentation', :all_on_start => true, :all_after_pass => true do
guard 'rspec', cmd: 'bundle exec rspec --format documentation', :all_on_start => true, :all_after_pass => true do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec/" }
Expand Down

0 comments on commit c41970b

Please sign in to comment.