Codebase list ruby-maxmind-db / c28d2781-56d0-43b4-8dde-839d59543476/upstream Rakefile
c28d2781-56d0-43b4-8dde-839d59543476/upstream

Tree @c28d2781-56d0-43b4-8dde-839d59543476/upstream (Download .tar.gz)

Rakefile @c28d2781-56d0-43b4-8dde-839d59543476/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