Codebase list ruby-maxmind-db / 8c3159d Rakefile
8c3159d

Tree @8c3159d (Download .tar.gz)

Rakefile @8c3159draw · 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