-
Notifications
You must be signed in to change notification settings - Fork 8
/
Rakefile
62 lines (48 loc) · 1.41 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
# frozen_string_literal: true
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
unless ENV['CI']
# This doesn't need to load in CI builds.
require 'yard/rake/yardoc_task'
Dir['tasks/**/*.rake'].each { |task_file| load task_file }
end
RSpec::Core::RakeTask.new(:spec) do |task|
task.ruby_opts = '-E UTF-8'
end
desc 'Run RSpec with code coverage'
task :coverage do
ENV['COVERAGE'] = 'true'
Rake::Task['spec'].execute
end
# TODO(thomthom): Look at the relaxed Rubocop styleguide for base rule-set:
# http://relaxed.ruby.style/
RuboCop::RakeTask.new(:internal_investigation)
# RuboCop::RakeTask.new(:internal_investigation) do |task|
# task.options = ['--force-exclusion']
# end
YARD::Rake::YardocTask.new unless ENV['CI']
task default: %i[
generate_cops_documentation
spec
internal_investigation
]
desc 'Run CI tasks'
task ci: %i[
spec
internal_investigation
]
desc 'Generate a new cop template'
task :new_cop, [:cop] do |_task, args|
require_relative 'lib/rubocop/sketchup/generator'
cop_name = args.fetch(:cop) do
warn 'usage: bundle exec rake new_cop[Department/Name]'
exit!
end
generator = RuboCop::SketchUp::Generator.new(cop_name)
generator.write_source
generator.write_spec
# generator.inject_require(root_file_path: 'lib/rubocop/cop/foobar_cops.rb')
generator.inject_config(config_file_path: 'config/default.yml')
puts generator.todo
end