forked from rubocop/rubocop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcops_documentation.rake
265 lines (229 loc) · 7.12 KB
/
cops_documentation.rake
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# frozen_string_literal: true
require 'yard'
require 'rubocop'
YARD::Rake::YardocTask.new(:yard_for_generate_documentation) do |task|
task.files = ['lib/rubocop/cop/*/*.rb']
task.options = ['--no-output']
end
desc 'Generate docs of all cops departments'
task generate_cops_documentation: :yard_for_generate_documentation do
def cops_of_department(cops, department)
cops.with_department(department).sort!
end
def cops_body(config, cop, description, examples_objects, pars)
content = h2(cop.cop_name)
content << properties(config, cop)
content << "#{description}\n"
content << examples(examples_objects) if examples_objects.count.positive?
content << configurations(pars)
content << references(config, cop)
content
end
def examples(examples_object)
examples_object.each_with_object(h3('Examples').dup) do |example, content|
content << h4(example.name) unless example.name == ''
content << code_example(example)
end
end
# rubocop:disable Metrics/MethodLength
def properties(config, cop)
header = [
'Enabled by default', 'Safe', 'Supports autocorrection', 'VersionAdded',
'VersionChanged'
]
config = config.for_cop(cop)
safe_auto_correct = config.fetch('SafeAutoCorrect', true)
autocorrect = if cop.new.support_autocorrect?
"Yes #{'(Unsafe)' unless safe_auto_correct}"
else
'No'
end
content = [[
config.fetch('Enabled') ? 'Enabled' : 'Disabled',
config.fetch('Safe', true) ? 'Yes' : 'No',
autocorrect,
config.fetch('VersionAdded', '-'),
config.fetch('VersionChanged', '-')
]]
to_table(header, content) + "\n"
end
# rubocop:enable Metrics/MethodLength
def h2(title)
content = +"\n"
content << "## #{title}\n"
content << "\n"
content
end
def h3(title)
content = +"\n"
content << "### #{title}\n"
content << "\n"
content
end
def h4(title)
content = +"#### #{title}\n"
content << "\n"
content
end
def code_example(ruby_code)
content = +"```ruby\n"
content << ruby_code.text.gsub('@good', '# good')
.gsub('@bad', '# bad').strip
content << "\n```\n"
content
end
def configurations(pars)
return '' if pars.empty?
header = ['Name', 'Default value', 'Configurable values']
configs = pars
.each_key
.reject { |key| key.start_with?('Supported') }
.reject { |key| key.start_with?('AllowMultipleStyles') }
content = configs.map do |name|
configurable = configurable_values(pars, name)
default = format_table_value(pars[name])
[name, default, configurable]
end
h3('Configurable attributes') + to_table(header, content)
end
# rubocop:disable Metrics/CyclomaticComplexity,Metrics/MethodLength
def configurable_values(pars, name)
case name
when /^Enforced/
supported_style_name = RuboCop::Cop::Util.to_supported_styles(name)
format_table_value(pars[supported_style_name])
when 'IndentationWidth'
'Integer'
when 'Database'
format_table_value(pars['SupportedDatabases'])
else
case pars[name]
when String
'String'
when Integer
'Integer'
when Float
'Float'
when true, false
'Boolean'
when Array
'Array'
else
''
end
end
end
# rubocop:enable Metrics/CyclomaticComplexity,Metrics/MethodLength
def to_table(header, content)
table = [
header.join(' | '),
Array.new(header.size, '---').join(' | ')
]
table.concat(content.map { |c| c.join(' | ') })
table.join("\n") + "\n"
end
def format_table_value(val)
value =
case val
when Array
if val.empty?
'`[]`'
else
val.map { |config| format_table_value(config) }.join(', ')
end
else
"`#{val.nil? ? '<none>' : val}`"
end
value.gsub("#{Dir.pwd}/", '').rstrip
end
def references(config, cop)
cop_config = config.for_cop(cop)
urls = RuboCop::Cop::MessageAnnotator.new(config, cop_config, {}).urls
return '' if urls.empty?
content = h3('References')
content << urls.map { |url| "* [#{url}](#{url})" }.join("\n")
content << "\n"
content
end
def print_cops_of_department(cops, department, config)
selected_cops = cops_of_department(cops, department)
content = +"# #{department}\n"
selected_cops.each do |cop|
content << print_cop_with_doc(cop, config)
end
file_name = "#{Dir.pwd}/manual/cops_#{department.downcase}.md"
File.open(file_name, 'w') do |file|
puts "* generated #{file_name}"
file.write(content.strip + "\n")
end
end
def print_cop_with_doc(cop, config)
t = config.for_cop(cop)
non_display_keys = %w[
Description Enabled StyleGuide Reference Safe SafeAutoCorrect VersionAdded
VersionChanged
]
pars = t.reject { |k| non_display_keys.include? k }
description = 'No documentation'
examples_object = []
YARD::Registry.all(:class).detect do |code_object|
next unless RuboCop::Cop::Badge.for(code_object.to_s) == cop.badge
description = code_object.docstring unless code_object.docstring.blank?
examples_object = code_object.tags('example')
end
cops_body(config, cop, description, examples_object, pars)
end
def table_of_content_for_department(cops, department)
type_title = department[0].upcase + department[1..-1]
filename = "cops_#{department.downcase}.md"
content = +"#### Department [#{type_title}](#{filename})\n\n"
cops_of_department(cops, department.to_sym).each do |cop|
anchor = cop.cop_name.sub('/', '').downcase
content << "* [#{cop.cop_name}](#{filename}##{anchor})\n"
end
content
end
def print_table_of_contents(cops)
path = "#{Dir.pwd}/manual/cops.md"
original = File.read(path)
content = +"<!-- START_COP_LIST -->\n"
content << table_contents(cops)
content << "\n<!-- END_COP_LIST -->"
content = original.sub(
/<!-- START_COP_LIST -->.+<!-- END_COP_LIST -->/m, content
)
File.write(path, content)
end
def table_contents(cops)
cops
.departments
.map(&:to_s)
.sort
.map { |department| table_of_content_for_department(cops, department) }
.join("\n")
end
def assert_manual_synchronized
# Do not print diff and yield whether exit code was zero
sh('git diff --quiet manual') do |outcome, _|
return if outcome
# Output diff before raising error
sh('GIT_PAGER=cat git diff manual')
warn 'The manual directory is out of sync. ' \
'Run `rake generate_cops_documentation` and commit the results.'
exit!
end
end
def main
cops = RuboCop::Cop::Cop.registry
config = RuboCop::ConfigLoader.default_configuration
YARD::Registry.load!
cops.departments.sort!.each do |department|
print_cops_of_department(cops, department, config)
end
print_table_of_contents(cops)
assert_manual_synchronized if ENV['CI'] == 'true'
ensure
RuboCop::ConfigLoader.default_configuration = nil
end
main
end