-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
36 lines (25 loc) · 881 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
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
Dir['tasks/**/*.rake'].each { |t| load t }
RSpec::Core::RakeTask.new(:spec)
task :default => :spec
require 'rspec/core/rake_task'
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
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/sidekiq_cops.rb')
generator.inject_config(config_file_path: 'config/default.yml')
puts generator.todo
end