You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. # frozen_string_literal: true
  2. require "bundler/gem_tasks"
  3. require "rake/testtask"
  4. Rake::TestTask.new(:test) do |t|
  5. t.libs << "test"
  6. t.libs << "lib"
  7. t.test_files = FileList["test/**/*_test.rb"]
  8. end
  9. require "rubocop/rake_task"
  10. RuboCop::RakeTask.new
  11. task default: %i[test rubocop]