From 83def5004f032b440b073744b1d6184c3cd6c89d Mon Sep 17 00:00:00 2001 From: Michael Kessler Date: Wed, 12 Oct 2011 18:15:11 +0200 Subject: [PATCH] Disable bdd cycle. Yes, it takes a way to long before you can get started. We anyway have to run spec:portability to also locally test on all supported Rubies. --- Guardfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guardfile b/Guardfile index 443f0f5..55ca7f1 100644 --- a/Guardfile +++ b/Guardfile @@ -1,5 +1,5 @@ group :specs do - guard :rspec, :cli => '--fail-fast --format doc' do + guard :rspec, :all_on_start => false, :all_after_pass => false, :cli => '--fail-fast --format doc' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/support/listener_helper.rb') { Dir.glob("spec/guard/listeners/*") }