diff --git a/Rakefile b/Rakefile index 67703bc6..d54a2ede 100644 --- a/Rakefile +++ b/Rakefile @@ -5,6 +5,8 @@ require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) require "rubocop/rake_task" -RuboCop::RakeTask.new +RuboCop::RakeTask.new do |t| + t.options = %w[--display-cop-names] +end task :default => %w[spec rubocop]