forked from rubocop/rubocop-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
74 lines (57 loc) · 1.57 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# 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 'rspec/core/rake_task'
desc 'Run RSpec'
task :spec do
if Process.respond_to?(:fork)
sh('rspec-queue spec')
else
sh('rspec spec')
end
end
desc 'Run RSpec with code coverage'
task :coverage do
ENV['COVERAGE'] = 'true'
Rake::Task['spec'].execute
end
desc 'Run RuboCop over itself'
RuboCop::RakeTask.new(:internal_investigation)
task default: %i[
documentation_syntax_check
generate_cops_documentation
spec
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[Rails/Name]'
exit!
end
github_user = `git config github.user`.chop
github_user = 'your_id' if github_user.empty?
generator = RuboCop::Cop::Generator.new(cop_name, github_user)
generator.write_source
generator.write_spec
generator.inject_require(
root_file_path: 'lib/rubocop/cop/rails_cops.rb'
)
generator.inject_config(config_file_path: 'config/default.yml', version_added: bump_minor_version)
puts generator.todo
end
def bump_minor_version
major, minor, _patch = RuboCop::Rails::Version::STRING.split('.')
"#{major}.#{minor.succ}"
end