Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrandx <dmitriy.zaporozhets@gmail.com>2012-09-10 20:50:35 +0400
committerrandx <dmitriy.zaporozhets@gmail.com>2012-09-10 20:50:35 +0400
commita2f7f48c034bc32fe626980ed88f8789b19b36bd (patch)
tree1d2ed05743f96eb5cf624efd6d30c1a82deabf63 /Guardfile
parent3f01ec2d5b7421f05192fc78974a7ff4ba8c8daf (diff)
Ask guard not to run all tests on start
Diffstat (limited to 'Guardfile')
-rw-r--r--Guardfile2
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" }