We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd40349 commit bdff4b4Copy full SHA for bdff4b4
Guardfile
@@ -1,12 +1,12 @@
1
# More info at https://github.com/guard/guard#readme
2
3
-guard 'rspec' do
+guard 'rspec', :cli => "--color --format nested --fail-fast" do
4
watch(%r{^spec/.+_spec\.rb$})
5
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
6
watch('spec/spec_helper.rb') { "spec" }
7
end
8
9
-guard 'spork', :rspec_env => { 'RAILS_ENV' => 'test' } do
+guard 'spork', :rspec_env => { 'RAILS_ENV' => 'test' }, :rspec_port => 9090 do
10
watch(%r{^lib/(.+)\.rb$})
11
watch('Gemfile.lock')
12
watch('spec/spec_helper.rb') { :rspec }
0 commit comments