Rakefile in ezclient-1.3.0 vs Rakefile in ezclient-1.4.0
- old
+ new
@@ -1,8 +1,10 @@
# frozen_string_literal: true
require "bundler/gem_tasks"
require "rspec/core/rake_task"
+require "rubocop/rake_task"
RSpec::Core::RakeTask.new(:spec)
+RuboCop::RakeTask.new(:lint)
-task default: :spec
+task default: %i[lint spec]