Codebase list ruby-maxmind-db / 9ac1856e-61de-422c-971f-48161b6d5fc0/upstream Rakefile
9ac1856e-61de-422c-971f-48161b6d5fc0/upstream

Tree @9ac1856e-61de-422c-971f-48161b6d5fc0/upstream (Download .tar.gz)

Rakefile @9ac1856e-61de-422c-971f-48161b6d5fc0/upstreamraw · history · blame

# frozen_string_literal: true

require 'rake/testtask'
require 'rubocop/rake_task'

Rake::TestTask.new do |t|
  t.libs << 'test'
end

RuboCop::RakeTask.new

desc 'Run tests and RuboCop'
task default: :test
task default: :rubocop