Hide list of specs

When running rspec from rake, hide the list of specs.
(bit.ly/1nVq3Jn)
This commit is contained in:
Jared Beck 2016-02-06 23:53:05 -05:00
parent d68587b496
commit 1d7625640c
1 changed files with 4 additions and 1 deletions

View File

@ -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