Skip to content

Commit 27932d0

Browse files
authored
Improve rubocop setup (#1139)
* Rename rake rubocop to rake format_generated_files * Add rubocop rules to ensure spaces are applied consistently * Improve rubocop related CI workflows
1 parent 8a5a4ae commit 27932d0

13 files changed

+56
-23
lines changed

.generated_files_rubocop.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This rubocop configuration is ONLY for the generated files (listed in Rakefile). It is not meant to be used for RDoc's
2+
# source code.
3+
# The purpose of this file is to ensure the generated files don't have trailing whitespace or empty lines, which could
4+
# be a problem for ruby/ruby's CI
5+
AllCops:
6+
TargetRubyVersion: 3.3
7+
DisabledByDefault: true
8+
9+
Layout/TrailingWhitespace:
10+
Enabled: true
11+
Layout/TrailingEmptyLines:
12+
Enabled: true

.github/workflows/test.yml

+14-2
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,17 @@ jobs:
4545
RUBYOPT: --enable-frozen_string_literal
4646
- if: ${{ matrix.ruby == 'head' && startsWith(matrix.os, 'ubuntu') }}
4747
run: bundle exec rake rdoc
48-
- if: ${{ matrix.ruby == 'head' && startsWith(matrix.os, 'ubuntu') }}
49-
run: bundle exec rake rubocop
48+
lint:
49+
runs-on: ubuntu-latest
50+
steps:
51+
- uses: actions/checkout@v4
52+
- name: Set up Ruby
53+
uses: ruby/setup-ruby@v1
54+
with:
55+
ruby-version: "3.3"
56+
bundler-cache: true
57+
- name: Run rubocop
58+
run: bundle exec rubocop
59+
# Just to make sure the format_generated_files task is working
60+
- name: Sanity check for the format_generated_files task
61+
run: bundle exec rake generate format_generated_files

.rubocop.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
AllCops:
2-
TargetRubyVersion: 2.6
2+
TargetRubyVersion: 3.0
33
DisabledByDefault: true
4-
Exclude:
5-
- rdoc.gemspec
4+
SuggestExtensions: false
65

76
Layout/TrailingWhitespace:
87
Enabled: true
8+
99
Layout/TrailingEmptyLines:
1010
Enabled: true
11+
12+
Layout/SpaceAroundKeyword:
13+
Enabled: true
14+
15+
Layout/SpaceBeforeComma:
16+
Enabled: true
17+
18+
Layout/SpaceAfterComma:
19+
Enabled: true

Rakefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ begin
105105
require 'rubocop/rake_task'
106106
rescue LoadError
107107
else
108-
RuboCop::RakeTask.new(:rubocop) do |t|
109-
t.options = [*parsed_files]
108+
RuboCop::RakeTask.new(:format_generated_files) do |t|
109+
t.options = parsed_files + ["--config=.generated_files_rubocop.yml"]
110110
end
111-
task :build => [:generate, "rubocop:autocorrect"]
111+
task :build => [:generate, "format_generated_files:autocorrect"]
112112
end

lib/rdoc/code_object/alias.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def full_old_name
7070
# HTML id-friendly version of +#new_name+.
7171

7272
def html_name
73-
CGI.escape(@new_name.gsub('-', '-2D')).gsub('%','-').sub(/^-/, '')
73+
CGI.escape(@new_name.gsub('-', '-2D')).gsub('%', '-').sub(/^-/, '')
7474
end
7575

7676
def inspect # :nodoc:

lib/rdoc/code_object/method_attr.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ def block_params=(value)
268268
when 'const_get' then 'const'
269269
when 'new' then
270270
$1.split('::').last. # ClassName => class_name
271-
gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
272-
gsub(/([a-z\d])([A-Z])/,'\1_\2').
271+
gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2').
272+
gsub(/([a-z\d])([A-Z])/, '\1_\2').
273273
downcase
274274
else
275275
$2
@@ -291,7 +291,7 @@ def block_params=(value)
291291
def html_name
292292
require 'cgi/util'
293293

294-
CGI.escape(@name.gsub('-', '-2D')).gsub('%','-').sub(/^-/, '')
294+
CGI.escape(@name.gsub('-', '-2D')).gsub('%', '-').sub(/^-/, '')
295295
end
296296

297297
##

lib/rdoc/code_object/top_level.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ def inspect # :nodoc:
183183
"#<%s:0x%x %p modules: %p classes: %p>" % [
184184
self.class, object_id,
185185
base_name,
186-
@modules.map { |n,m| m },
187-
@classes.map { |n,c| c }
186+
@modules.map { |n, m| m },
187+
@classes.map { |n, c| c }
188188
]
189189
end
190190

@@ -254,8 +254,8 @@ def pretty_print q # :nodoc:
254254
q.text "base name: #{base_name.inspect}"
255255
q.breakable
256256

257-
items = @modules.map { |n,m| m }
258-
items.concat @modules.map { |n,c| c }
257+
items = @modules.map { |n, m| m }
258+
items.concat @modules.map { |n, c| c }
259259
q.seplist items do |mod| q.pp mod end
260260
end
261261
end

lib/rdoc/generator/pot/message_extractor.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def extract_from_klass klass
2929
extract_text(klass.comment_location, klass.full_name)
3030

3131
klass.each_section do |section, constants, attributes|
32-
extract_text(section.title ,"#{klass.full_name}: section title")
32+
extract_text(section.title, "#{klass.full_name}: section title")
3333
section.comments.each do |comment|
3434
extract_text(comment, "#{klass.full_name}: #{section.title}")
3535
end

lib/rdoc/markup/attribute_manager.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def unmask_protected_sequences
260260

261261
def add_word_pair(start, stop, name, exclusive = false)
262262
raise ArgumentError, "Word flags may not start with '<'" if
263-
start[0,1] == '<'
263+
start[0, 1] == '<'
264264

265265
bitmap = @attributes.bitmap_for name
266266

@@ -271,7 +271,7 @@ def add_word_pair(start, stop, name, exclusive = false)
271271
@word_pair_map[pattern] = bitmap
272272
end
273273

274-
@protectable << start[0,1]
274+
@protectable << start[0, 1]
275275
@protectable.uniq!
276276

277277
@exclusive_bitmap |= bitmap if exclusive

lib/rdoc/markup/to_bs.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def initialize markup = nil
2424
def init_tags
2525
add_tag :BOLD, '+b', '-b'
2626
add_tag :EM, '+_', '-_'
27-
add_tag :TT, '' , '' # we need in_tt information maintained
27+
add_tag :TT, '', '' # we need in_tt information maintained
2828
end
2929

3030
##

lib/rdoc/options.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ def parse argv
683683
684684
EOF
685685

686-
parsers = Hash.new { |h,parser| h[parser] = [] }
686+
parsers = Hash.new { |h, parser| h[parser] = [] }
687687

688688
RDoc::Parser.parsers.each do |regexp, parser|
689689
parsers[parser.name.sub('RDoc::Parser::', '')] << regexp.source

lib/rdoc/parser/c.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ def do_constants
440440
# Scans #content for rb_include_module
441441

442442
def do_includes
443-
@content.scan(/rb_include_module\s*\(\s*(\w+?),\s*(\w+?)\s*\)/) do |c,m|
443+
@content.scan(/rb_include_module\s*\(\s*(\w+?),\s*(\w+?)\s*\)/) do |c, m|
444444
next unless cls = @classes[c]
445445
m = @known_classes[m] || m
446446

lib/rdoc/parser/changelog.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ class << self; prepend Git; end
193193

194194
entries << [entry_name, entry_body] if entry_name
195195

196-
entries.reject! do |(entry,_)|
196+
entries.reject! do |(entry, _)|
197197
entry == nil
198198
end
199199

0 commit comments

Comments
 (0)