-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Rakefile
39 lines (29 loc) · 862 Bytes
/
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
# frozen_string_literal: true
require 'bundler/gem_tasks'
require 'rubocop/rake_task'
require 'rspec/core/rake_task'
Dir['tasks/**/*.rake'].each { |t| load t }
task default: %i[
spec
rubocop
generate_cops_documentation
documentation_syntax_check
]
RuboCop::RakeTask.new
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = FileList['spec/**/*_spec.rb']
end
desc 'Generate a new cop with a 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_spec
generator.inject_require(root_file_path: 'lib/rubocop/cop/solidus_cops.rb')
generator.inject_config(config_file_path: 'config/default.yml')
puts generator.todo
end