blob: 4835bcda062630a7a56f7d0c24fc3497aeb81e0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require "bundler/setup"
require "rubocop/rake_task"
RuboCop::RakeTask.new(:rubocop) do |task|
# If you use mediawiki-vagrant, rubocop will by default use it's .rubocop.yml
# The next line makes it explicit that you want .rubocop.yml from the
# directory where `bundle exec rake` is executed:
task.options = ["-c", ".rubocop.yml"]
end
task default: [:test]
desc "Run all build/tests commands (CI entry point)"
task test: [:rubocop]
|