Codebase list ruby-maxmind-db / 1dc0f99 Rakefile
1dc0f99

Tree @1dc0f99 (Download .tar.gz)

Rakefile @1dc0f99raw · 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