Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Rakefile « gitlab-database-load_balancing « gems - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cca7175449300ac09160bf9df759076b53696d25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

require "rubocop/rake_task"

RuboCop::RakeTask.new

task default: %i[spec rubocop]