Codebase list ruby-maxmind-db / 5985b010-db8e-4419-bc7b-3cf00c1d10ec/upstream Rakefile
5985b010-db8e-4419-bc7b-3cf00c1d10ec/upstream

Tree @5985b010-db8e-4419-bc7b-3cf00c1d10ec/upstream (Download .tar.gz)

Rakefile @5985b010-db8e-4419-bc7b-3cf00c1d10ec/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