Rakefile 195 B

1234567891011
  1. # frozen_string_literal: true
  2. task default: :full_test
  3. require 'rubocop/rake_task'
  4. RuboCop::RakeTask.new(:rubocop) do |t|
  5. t.options = ['--display-cop-names']
  6. end
  7. task full_test: [:rubocop]