Remove old WebResponse::setCookie() calling method
[mediawiki.git] / Rakefile
blob59f548057235f9875833211014614cc0ee516861
1 require 'bundler/setup'
3 require 'rubocop/rake_task'
4 RuboCop::RakeTask.new(:rubocop) do |task|
5   # if you use mediawiki-vagrant, rubocop will by default use it's .rubocop.yml
6   # the next line makes it explicit that you want .rubocop.yml from the directory
7   # where `bundle exec rake` is executed
8   task.options = ['-c', '.rubocop.yml']
9 end
11 require 'mediawiki_selenium/rake_task'
12 MediawikiSelenium::RakeTask.new(site_tag: false)
14 task default: [:test]
16 desc 'Run all build/tests commands (CI entry point)'
17 task test: [:rubocop]