Codebase list ruby-maxmind-db / c0ed5af9-d9b9-47a8-bf44-9b96e7f204b8/upstream Rakefile
c0ed5af9-d9b9-47a8-bf44-9b96e7f204b8/upstream

Tree @c0ed5af9-d9b9-47a8-bf44-9b96e7f204b8/upstream (Download .tar.gz)

Rakefile @c0ed5af9-d9b9-47a8-bf44-9b96e7f204b8/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