forked from rubocop/rubocop-minitest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
56 lines (41 loc) · 1.31 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true
task release: 'changelog:check_clean' # Before task is required
require 'bundler'
require 'bundler/gem_tasks'
Dir['tasks/**/*.rake'].each { |t| load t }
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
warn e.message
warn 'Run `bundle install` to install missing gems'
exit e.status_code
end
require 'rubocop/rake_task'
require 'rake/testtask'
require_relative 'lib/rubocop/cop/generator'
Rake::TestTask.new do |t|
t.libs << 'test'
t.libs << 'lib'
t.test_files = FileList['test/**/*_test.rb']
end
desc 'Run RuboCop over itself'
RuboCop::RakeTask.new(:internal_investigation)
task default: %i[documentation_syntax_check test internal_investigation]
desc 'Generate a new cop template'
task :new_cop, [:cop] do |_task, args|
require 'rubocop'
cop_name = args.fetch(:cop) do
warn "usage: bundle exec rake 'new_cop[Department/Name]'"
exit!
end
generator = RuboCop::Cop::Generator.new(cop_name)
generator.write_source
generator.write_test
generator.inject_require(root_file_path: 'lib/rubocop/cop/minitest_cops.rb')
generator.inject_config(config_file_path: 'config/default.yml')
puts generator.todo
end
def bump_minor_version
major, minor, _patch = RuboCop::Minitest::Version::STRING.split('.')
"#{major}.#{minor.succ}"
end