Skip to content

Commit

Permalink
Merge pull request #708 from airblade/hide_spec_list
Browse files Browse the repository at this point in the history
Hide list of specs
  • Loading branch information
jaredbeck committed Feb 7, 2016
2 parents 1012b75 + 1d76256 commit 9b44da5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Rakefile
Expand Up @@ -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
Expand Down

0 comments on commit 9b44da5

Please sign in to comment.