|
@@ -1,7 +1,11 @@
|
|
# frozen_string_literal: true
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
+task default: :full_test
|
|
|
|
+
|
|
require 'rubocop/rake_task'
|
|
require 'rubocop/rake_task'
|
|
|
|
|
|
RuboCop::RakeTask.new(:rubocop) do |t|
|
|
RuboCop::RakeTask.new(:rubocop) do |t|
|
|
t.options = ['--display-cop-names']
|
|
t.options = ['--display-cop-names']
|
|
end
|
|
end
|
|
|
|
+
|
|
|
|
+task full_test: [:rubocop]
|