summaryrefslogtreecommitdiff
path: root/Rakefile
blob: 6eef121628e9844a4ba6d921eb7813ff9749a1a8 (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]