diff options
author | randx <dmitriy.zaporozhets@gmail.com> | 2012-09-10 19:50:35 +0300 |
---|---|---|
committer | randx <dmitriy.zaporozhets@gmail.com> | 2012-09-10 19:50:35 +0300 |
commit | a2f7f48c034bc32fe626980ed88f8789b19b36bd (patch) | |
tree | 1d2ed05743f96eb5cf624efd6d30c1a82deabf63 /Guardfile | |
parent | 3f01ec2d5b7421f05192fc78974a7ff4ba8c8daf (diff) | |
download | gitlab-ce-a2f7f48c034bc32fe626980ed88f8789b19b36bd.tar.gz |
Ask guard not to run all tests on start
Diffstat (limited to 'Guardfile')
-rw-r--r-- | Guardfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Guardfile b/Guardfile index 6ed414bc4c5..0eea2ad9244 100644 --- a/Guardfile +++ b/Guardfile @@ -1,7 +1,7 @@ # A sample Guardfile # More info at https://github.com/guard/guard#readme -guard 'rspec', :version => 2 do +guard 'rspec', :version => 2, :all_on_start => false do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } |