Codebase list ruby-maxmind-db / fresh-snapshots/upstream Rakefile
fresh-snapshots/upstream

Tree @fresh-snapshots/upstream (Download .tar.gz)

Rakefile @fresh-snapshots/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