Rakefile in active_job_channel-0.3.0 vs Rakefile in active_job_channel-0.4.0
- old
+ new
@@ -22,8 +22,10 @@
# RSpec Task
require 'rspec/core'
require 'rspec/core/rake_task'
desc 'Run all specs in spec directory (excluding plugin specs)'
-RSpec::Core::RakeTask.new
+RSpec::Core::RakeTask.new do |t|
+ t.verbose = false
+end
task default: %i[bundle:audit rubocop spec]