Rakefile in normalize_attributes-0.3.1 vs Rakefile in normalize_attributes-0.4.0
- old
+ new
@@ -1,12 +1,15 @@
# frozen_string_literal: true
require "bundler/gem_tasks"
require "rake/testtask"
+require "rubocop/rake_task"
Rake::TestTask.new(:test) do |t|
t.libs << "test"
+ t.libs << "lib"
t.test_files = FileList["test/**/*_test.rb"]
- t.warning = false
end
-task default: :test
+RuboCop::RakeTask.new
+
+task default: %i[test rubocop]