Rakefile in spearly-sdk-ruby-0.10.0 vs Rakefile in spearly-sdk-ruby-0.11.0
- old
+ new
@@ -5,8 +5,10 @@
RSpec::Core::RakeTask.new(:spec)
require 'rubocop/rake_task'
-RuboCop::RakeTask.new
+RuboCop::RakeTask.new(:rubocop) do |task|
+ task.options = ['--autocorrect-all']
+end
task default: %i[spec rubocop]