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
|
# 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 Prism'
task :prism_spec do
sh('PARSER_ENGINE=parser_prism bundle exec rake spec')
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[codespell documentation_syntax_check spec prism_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[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/performance_cops.rb')
generator.inject_config(config_file_path: 'config/default.yml')
puts generator.todo
end
def bump_minor_version
major, minor, _patch = RuboCop::Performance::Version::STRING.split('.')
"#{major}.#{minor.succ}"
end
|