From 1d7625640c67018058bc1c927721cd09f46b5c6d Mon Sep 17 00:00:00 2001 From: Jared Beck Date: Sat, 6 Feb 2016 23:53:05 -0500 Subject: [PATCH] Hide list of specs When running rspec from rake, hide the list of specs. (bit.ly/1nVq3Jn) --- Rakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index f4754ebd..986ae0a7 100644 --- a/Rakefile +++ b/Rakefile @@ -19,7 +19,10 @@ end require 'rspec/core/rake_task' desc 'Run tests on PaperTrail with RSpec' -RSpec::Core::RakeTask.new(:spec) +task(:spec).clear +RSpec::Core::RakeTask.new(:spec) do |t| + t.verbose = false # hide list of specs bit.ly/1nVq3Jn +end require 'rubocop/rake_task' RuboCop::RakeTask.new