Codebase list ruby-maxmind-db / upstream/1.1.1+git20210128.85c5187 Rakefile
upstream/1.1.1+git20210128.85c5187

Tree @upstream/1.1.1+git20210128.85c5187 (Download .tar.gz)

Rakefile @upstream/1.1.1+git20210128.85c5187raw · 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