rubocop-checkstyle_formatter 0.6.1 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +10 -6
  3. data/.rubocop_todo.yml +6 -0
  4. data/Appraisals +7 -6
  5. data/README.md +8 -1
  6. data/gemfiles/rubocop_1.24.1.gemfile.lock +11 -2
  7. data/gemfiles/rubocop_1.25.1.gemfile.lock +11 -2
  8. data/gemfiles/rubocop_1.26.1.gemfile.lock +11 -2
  9. data/gemfiles/rubocop_1.27.0.gemfile.lock +11 -2
  10. data/gemfiles/rubocop_1.28.2.gemfile.lock +11 -2
  11. data/gemfiles/rubocop_1.29.1.gemfile.lock +11 -2
  12. data/gemfiles/rubocop_1.30.1.gemfile.lock +11 -3
  13. data/gemfiles/{rubocop_1.19.1.gemfile → rubocop_1.40.0.gemfile} +1 -1
  14. data/gemfiles/{rubocop_1.21.0.gemfile.lock → rubocop_1.40.0.gemfile.lock} +34 -19
  15. data/gemfiles/{rubocop_1.21.0.gemfile → rubocop_1.50.2.gemfile} +1 -1
  16. data/gemfiles/{rubocop_1.23.0.gemfile.lock → rubocop_1.50.2.gemfile.lock} +35 -20
  17. data/gemfiles/{rubocop_1.20.0.gemfile → rubocop_1.60.2.gemfile} +1 -1
  18. data/gemfiles/{rubocop_1.22.3.gemfile.lock → rubocop_1.60.2.gemfile.lock} +37 -20
  19. data/gemfiles/{rubocop_1.22.3.gemfile → rubocop_1.70.0.gemfile} +1 -1
  20. data/gemfiles/rubocop_1.70.0.gemfile.lock +82 -0
  21. data/gemfiles/rubocop_1.80.2.gemfile +7 -0
  22. data/gemfiles/rubocop_1.80.2.gemfile.lock +84 -0
  23. data/gemfiles/rubocop_1.90.0.gemfile +7 -0
  24. data/gemfiles/rubocop_1.90.0.gemfile.lock +84 -0
  25. data/lib/rubocop/formatter/checkstyle_formatter.rb +45 -34
  26. data/rubocop-checkstyle_formatter.gemspec +5 -1
  27. metadata +74 -16
  28. data/gemfiles/rubocop_1.19.1.gemfile.lock +0 -65
  29. data/gemfiles/rubocop_1.20.0.gemfile.lock +0 -64
  30. data/gemfiles/rubocop_1.23.0.gemfile +0 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15fd148d5deef613d0eb8741b473fc511646037417c2d989937e339cdf1240db
4
- data.tar.gz: 532860a16b4e8e2c2f7382792546e1387497564d21d151a053afa8e7eae7bb08
3
+ metadata.gz: 84d348075a9ec939c1e7c4f190fc0aee41758b66525acafdf783680c95e30fe1
4
+ data.tar.gz: 3885583e0db6fa3387578bba54454a99ce26c3333d1b4f49a00b737afaa8ccaa
5
5
  SHA512:
6
- metadata.gz: 62aca9b772476e718a315223472537bea2532afd25ad6fc1e4c861ac305e84400618e443c5d00fc17caacf918cb6b0d6577fff9f74194c1482c8557d8e807ec0
7
- data.tar.gz: 32919d8fbca2a1a8db84ef628193bf2f8e5f5ba766c2f2d19b5a62b78418aee9d55f03c482fbefd8e37ee4066e4b7b33d2b552c87f0a426cfe098ca1835f7d5a
6
+ metadata.gz: cc6769ea9385d50d149db42f78076114fbb0e692c89ee534eadd432cd413ec657d2cb35e4a7d4d4ee40f49068282296432ed02efe8314f943187f7e53934c97d
7
+ data.tar.gz: 6ddb1feda33de9f5fa3b2ff33cab5b886d3585b8a358450d2f2302c3663c8158f14e7afab7c9b7f4e714ea228719f4551f024157b5270832aad78ba2cf315e87
@@ -1,21 +1,25 @@
1
1
  name: Build Workflow
2
- on: [push, pull_request]
2
+ on:
3
+ push:
4
+ branches: [main]
5
+ pull_request:
3
6
  jobs:
4
7
  test:
5
8
  strategy:
6
9
  fail-fast: false
7
10
  matrix:
8
- ruby: ['2.6', '2.7', '3.0', '3.1', 'head', 'jruby-9.3.7.0']
9
- gemfile: ['1.20.0', '1.21.0', '1.22.3', '1.23.0', '1.24.1', '1.25.1', '1.26.1', '1.27.0', '1.28.2', '1.29.1', '1.30.1']
11
+ ruby: ['3.1', '3.2', '3.3', '3.4', '4.0', 'head', 'jruby-10.1.1.0', 'jruby-10.0.6.0']
12
+ gemfile: ['1.24.1', '1.25.1', '1.26.1', '1.27.0', '1.28.2', '1.29.1', '1.30.1', '1.40.0', '1.50.2', '1.60.2', '1.70.0', '1.80.2', '1.90.0']
10
13
  runs-on: ubuntu-latest
11
14
  continue-on-error: ${{ matrix.ruby == 'head' }}
12
15
  env:
13
16
  BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rubocop_${{ matrix.gemfile }}.gemfile
14
17
  steps:
15
- - uses: actions/checkout@v3
18
+ - uses: actions/checkout@v4
16
19
  - uses: ruby/setup-ruby@v1
17
20
  with:
18
- bundler-cache: true
21
+ bundler: 2.5.22
19
22
  ruby-version: ${{ matrix.ruby }}
20
23
  rubygems: latest
21
- - run: bundle exec rspec spec
24
+ - run: bundle install --jobs 4
25
+ - run: bundle exec rspec spec
data/.rubocop_todo.yml CHANGED
@@ -2,6 +2,12 @@
2
2
  # Configuration parameters: CountComments, ExcludedMethods.
3
3
  Metrics/BlockLength:
4
4
  Max: 42
5
+ Exclude:
6
+ - 'spec/**/*'
7
+
8
+ Metrics/AbcSize:
9
+ Exclude:
10
+ - 'spec/**/*'
5
11
 
6
12
  # Offense count: 9
7
13
  # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
data/Appraisals CHANGED
@@ -1,16 +1,17 @@
1
1
  [
2
- '1.19.1',
3
- '1.20.0',
4
- '1.21.0',
5
- '1.22.3',
6
- '1.23.0',
7
2
  '1.24.1',
8
3
  '1.25.1',
9
4
  '1.26.1',
10
5
  '1.27.0',
11
6
  '1.28.2',
12
7
  '1.29.1',
13
- '1.30.1'
8
+ '1.30.1',
9
+ '1.40.0',
10
+ '1.50.2',
11
+ '1.60.2',
12
+ '1.70.0',
13
+ '1.80.2',
14
+ '1.90.0'
14
15
  ].each do |version|
15
16
  appraise "rubocop-#{version}" do
16
17
  gem 'rubocop', version
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  A formatter for [RuboCop](https://github.com/rubocop/rubocop) that outputs in checkstyle format.
4
4
  It requires RuboCop version 1.20.0 or above.
5
5
 
6
- ![Build Status](https://github.com/eitoball/rubocop-checkstyle_formatter/actions/workflows/build.yml/badge.svg?branch=master)
6
+ ![Build Status](https://github.com/eitoball/rubocop-checkstyle_formatter/actions/workflows/build.yml/badge.svg?branch=main)
7
7
 
8
8
  ## Installation
9
9
 
@@ -30,6 +30,13 @@ As a part of build, I execute rubocop as shell script like:
30
30
 
31
31
  Then, after build, I add post-build action 'Publish Checkstyle analysis results' and configure Checkstyle results to "tmp/checkstyle.xml".
32
32
 
33
+ ## Known limitations
34
+
35
+ Offense messages are written into the `message` attribute via REXML, which escapes
36
+ `&`, `<`, `>`, `'`, and `"` automatically, so these characters are safe to include in
37
+ cop messages. Raw control characters (e.g. `\x01`), however, are illegal in XML 1.0
38
+ and will cause REXML to raise an error while writing the report.
39
+
33
40
  ## Contributing
34
41
 
35
42
  1. Fork it
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-checkstyle_formatter (0.6.0)
4
+ rubocop-checkstyle_formatter (0.7.0)
5
+ rexml
5
6
  rubocop (>= 1.14.0)
6
7
 
7
8
  GEM
@@ -12,10 +13,14 @@ GEM
12
13
  rake
13
14
  thor (>= 0.14.0)
14
15
  ast (2.4.2)
16
+ base64 (0.3.0)
15
17
  diff-lcs (1.5.0)
18
+ ostruct (0.6.3)
16
19
  parallel (1.22.1)
17
20
  parser (3.1.2.1)
18
21
  ast (~> 2.4.1)
22
+ racc (1.8.1)
23
+ racc (1.8.1-java)
19
24
  rainbow (3.1.1)
20
25
  rake (13.0.6)
21
26
  regexp_parser (2.5.0)
@@ -50,15 +55,19 @@ GEM
50
55
 
51
56
  PLATFORMS
52
57
  universal-java-11
58
+ x86_64-darwin-24
53
59
  x86_64-linux
54
60
 
55
61
  DEPENDENCIES
56
62
  appraisal (~> 2.4.1)
63
+ base64
57
64
  bundler (>= 2.2.10)
65
+ ostruct
66
+ racc
58
67
  rake (>= 12.3.3)
59
68
  rspec (~> 3.5.0)
60
69
  rubocop (= 1.24.1)
61
70
  rubocop-checkstyle_formatter!
62
71
 
63
72
  BUNDLED WITH
64
- 2.3.22
73
+ 2.5.22
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-checkstyle_formatter (0.6.0)
4
+ rubocop-checkstyle_formatter (0.7.0)
5
+ rexml
5
6
  rubocop (>= 1.14.0)
6
7
 
7
8
  GEM
@@ -12,10 +13,14 @@ GEM
12
13
  rake
13
14
  thor (>= 0.14.0)
14
15
  ast (2.4.2)
16
+ base64 (0.3.0)
15
17
  diff-lcs (1.5.0)
18
+ ostruct (0.6.3)
16
19
  parallel (1.22.1)
17
20
  parser (3.1.2.1)
18
21
  ast (~> 2.4.1)
22
+ racc (1.8.1)
23
+ racc (1.8.1-java)
19
24
  rainbow (3.1.1)
20
25
  rake (13.0.6)
21
26
  regexp_parser (2.5.0)
@@ -50,15 +55,19 @@ GEM
50
55
 
51
56
  PLATFORMS
52
57
  universal-java-11
58
+ x86_64-darwin-24
53
59
  x86_64-linux
54
60
 
55
61
  DEPENDENCIES
56
62
  appraisal (~> 2.4.1)
63
+ base64
57
64
  bundler (>= 2.2.10)
65
+ ostruct
66
+ racc
58
67
  rake (>= 12.3.3)
59
68
  rspec (~> 3.5.0)
60
69
  rubocop (= 1.25.1)
61
70
  rubocop-checkstyle_formatter!
62
71
 
63
72
  BUNDLED WITH
64
- 2.3.22
73
+ 2.5.22
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-checkstyle_formatter (0.6.0)
4
+ rubocop-checkstyle_formatter (0.7.0)
5
+ rexml
5
6
  rubocop (>= 1.14.0)
6
7
 
7
8
  GEM
@@ -12,10 +13,14 @@ GEM
12
13
  rake
13
14
  thor (>= 0.14.0)
14
15
  ast (2.4.2)
16
+ base64 (0.3.0)
15
17
  diff-lcs (1.5.0)
18
+ ostruct (0.6.3)
16
19
  parallel (1.22.1)
17
20
  parser (3.1.2.1)
18
21
  ast (~> 2.4.1)
22
+ racc (1.8.1)
23
+ racc (1.8.1-java)
19
24
  rainbow (3.1.1)
20
25
  rake (13.0.6)
21
26
  regexp_parser (2.5.0)
@@ -50,15 +55,19 @@ GEM
50
55
 
51
56
  PLATFORMS
52
57
  universal-java-11
58
+ x86_64-darwin-24
53
59
  x86_64-linux
54
60
 
55
61
  DEPENDENCIES
56
62
  appraisal (~> 2.4.1)
63
+ base64
57
64
  bundler (>= 2.2.10)
65
+ ostruct
66
+ racc
58
67
  rake (>= 12.3.3)
59
68
  rspec (~> 3.5.0)
60
69
  rubocop (= 1.26.1)
61
70
  rubocop-checkstyle_formatter!
62
71
 
63
72
  BUNDLED WITH
64
- 2.3.22
73
+ 2.5.22
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-checkstyle_formatter (0.6.0)
4
+ rubocop-checkstyle_formatter (0.7.0)
5
+ rexml
5
6
  rubocop (>= 1.14.0)
6
7
 
7
8
  GEM
@@ -12,10 +13,14 @@ GEM
12
13
  rake
13
14
  thor (>= 0.14.0)
14
15
  ast (2.4.2)
16
+ base64 (0.3.0)
15
17
  diff-lcs (1.5.0)
18
+ ostruct (0.6.3)
16
19
  parallel (1.22.1)
17
20
  parser (3.1.2.1)
18
21
  ast (~> 2.4.1)
22
+ racc (1.8.1)
23
+ racc (1.8.1-java)
19
24
  rainbow (3.1.1)
20
25
  rake (13.0.6)
21
26
  regexp_parser (2.5.0)
@@ -50,15 +55,19 @@ GEM
50
55
 
51
56
  PLATFORMS
52
57
  universal-java-11
58
+ x86_64-darwin-24
53
59
  x86_64-linux
54
60
 
55
61
  DEPENDENCIES
56
62
  appraisal (~> 2.4.1)
63
+ base64
57
64
  bundler (>= 2.2.10)
65
+ ostruct
66
+ racc
58
67
  rake (>= 12.3.3)
59
68
  rspec (~> 3.5.0)
60
69
  rubocop (= 1.27.0)
61
70
  rubocop-checkstyle_formatter!
62
71
 
63
72
  BUNDLED WITH
64
- 2.3.22
73
+ 2.5.22
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-checkstyle_formatter (0.6.0)
4
+ rubocop-checkstyle_formatter (0.7.0)
5
+ rexml
5
6
  rubocop (>= 1.14.0)
6
7
 
7
8
  GEM
@@ -12,10 +13,14 @@ GEM
12
13
  rake
13
14
  thor (>= 0.14.0)
14
15
  ast (2.4.2)
16
+ base64 (0.3.0)
15
17
  diff-lcs (1.5.0)
18
+ ostruct (0.6.3)
16
19
  parallel (1.22.1)
17
20
  parser (3.1.2.1)
18
21
  ast (~> 2.4.1)
22
+ racc (1.8.1)
23
+ racc (1.8.1-java)
19
24
  rainbow (3.1.1)
20
25
  rake (13.0.6)
21
26
  regexp_parser (2.5.0)
@@ -50,15 +55,19 @@ GEM
50
55
 
51
56
  PLATFORMS
52
57
  universal-java-11
58
+ x86_64-darwin-24
53
59
  x86_64-linux
54
60
 
55
61
  DEPENDENCIES
56
62
  appraisal (~> 2.4.1)
63
+ base64
57
64
  bundler (>= 2.2.10)
65
+ ostruct
66
+ racc
58
67
  rake (>= 12.3.3)
59
68
  rspec (~> 3.5.0)
60
69
  rubocop (= 1.28.2)
61
70
  rubocop-checkstyle_formatter!
62
71
 
63
72
  BUNDLED WITH
64
- 2.3.22
73
+ 2.5.22
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-checkstyle_formatter (0.6.0)
4
+ rubocop-checkstyle_formatter (0.7.0)
5
+ rexml
5
6
  rubocop (>= 1.14.0)
6
7
 
7
8
  GEM
@@ -12,10 +13,14 @@ GEM
12
13
  rake
13
14
  thor (>= 0.14.0)
14
15
  ast (2.4.2)
16
+ base64 (0.3.0)
15
17
  diff-lcs (1.5.0)
18
+ ostruct (0.6.3)
16
19
  parallel (1.22.1)
17
20
  parser (3.1.2.1)
18
21
  ast (~> 2.4.1)
22
+ racc (1.8.1)
23
+ racc (1.8.1-java)
19
24
  rainbow (3.1.1)
20
25
  rake (13.0.6)
21
26
  regexp_parser (2.5.0)
@@ -50,15 +55,19 @@ GEM
50
55
 
51
56
  PLATFORMS
52
57
  universal-java-11
58
+ x86_64-darwin-24
53
59
  x86_64-linux
54
60
 
55
61
  DEPENDENCIES
56
62
  appraisal (~> 2.4.1)
63
+ base64
57
64
  bundler (>= 2.2.10)
65
+ ostruct
66
+ racc
58
67
  rake (>= 12.3.3)
59
68
  rspec (~> 3.5.0)
60
69
  rubocop (= 1.29.1)
61
70
  rubocop-checkstyle_formatter!
62
71
 
63
72
  BUNDLED WITH
64
- 2.3.22
73
+ 2.5.22
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-checkstyle_formatter (0.6.1)
4
+ rubocop-checkstyle_formatter (0.7.0)
5
+ rexml
5
6
  rubocop (>= 1.14.0)
6
7
 
7
8
  GEM
@@ -12,10 +13,14 @@ GEM
12
13
  rake
13
14
  thor (>= 0.14.0)
14
15
  ast (2.4.2)
16
+ base64 (0.3.0)
15
17
  diff-lcs (1.5.0)
18
+ ostruct (0.6.3)
16
19
  parallel (1.22.1)
17
20
  parser (3.1.2.1)
18
21
  ast (~> 2.4.1)
22
+ racc (1.8.1)
23
+ racc (1.8.1-java)
19
24
  rainbow (3.1.1)
20
25
  rake (13.0.6)
21
26
  regexp_parser (2.5.0)
@@ -50,16 +55,19 @@ GEM
50
55
 
51
56
  PLATFORMS
52
57
  universal-java-11
53
- x86_64-darwin-25
58
+ x86_64-darwin-24
54
59
  x86_64-linux
55
60
 
56
61
  DEPENDENCIES
57
62
  appraisal (~> 2.4.1)
63
+ base64
58
64
  bundler (>= 2.2.10)
65
+ ostruct
66
+ racc
59
67
  rake (>= 12.3.3)
60
68
  rspec (~> 3.5.0)
61
69
  rubocop (= 1.30.1)
62
70
  rubocop-checkstyle_formatter!
63
71
 
64
72
  BUNDLED WITH
65
- 2.5.5
73
+ 2.5.22
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rubocop", "1.19.1"
5
+ gem "rubocop", "1.40.0"
6
6
 
7
7
  gemspec path: "../"
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-checkstyle_formatter (0.6.0)
4
+ rubocop-checkstyle_formatter (0.7.0)
5
+ rexml
5
6
  rubocop (>= 1.14.0)
6
7
 
7
8
  GEM
@@ -11,15 +12,23 @@ GEM
11
12
  bundler
12
13
  rake
13
14
  thor (>= 0.14.0)
14
- ast (2.4.2)
15
- diff-lcs (1.5.0)
16
- parallel (1.22.1)
17
- parser (3.1.2.1)
15
+ ast (2.4.3)
16
+ base64 (0.3.0)
17
+ diff-lcs (1.6.2)
18
+ json (2.21.2)
19
+ json (2.21.2-java)
20
+ ostruct (0.6.3)
21
+ parallel (1.28.0)
22
+ parser (3.3.12.0)
18
23
  ast (~> 2.4.1)
24
+ racc
25
+ prism (1.9.0)
26
+ racc (1.8.1)
27
+ racc (1.8.1-java)
19
28
  rainbow (3.1.1)
20
- rake (13.0.6)
21
- regexp_parser (2.5.0)
22
- rexml (3.2.5)
29
+ rake (13.4.2)
30
+ regexp_parser (2.12.0)
31
+ rexml (3.4.4)
23
32
  rspec (3.5.0)
24
33
  rspec-core (~> 3.5.0)
25
34
  rspec-expectations (~> 3.5.0)
@@ -33,32 +42,38 @@ GEM
33
42
  diff-lcs (>= 1.2.0, < 2.0)
34
43
  rspec-support (~> 3.5.0)
35
44
  rspec-support (3.5.0)
36
- rubocop (1.21.0)
45
+ rubocop (1.40.0)
46
+ json (~> 2.3)
37
47
  parallel (~> 1.10)
38
- parser (>= 3.0.0.0)
48
+ parser (>= 3.1.2.1)
39
49
  rainbow (>= 2.2.2, < 4.0)
40
50
  regexp_parser (>= 1.8, < 3.0)
41
- rexml
42
- rubocop-ast (>= 1.9.1, < 2.0)
51
+ rexml (>= 3.2.5, < 4.0)
52
+ rubocop-ast (>= 1.23.0, < 2.0)
43
53
  ruby-progressbar (~> 1.7)
44
54
  unicode-display_width (>= 1.4.0, < 3.0)
45
- rubocop-ast (1.21.0)
46
- parser (>= 3.1.1.0)
47
- ruby-progressbar (1.11.0)
48
- thor (1.2.1)
49
- unicode-display_width (2.2.0)
55
+ rubocop-ast (1.50.0)
56
+ parser (>= 3.3.7.2)
57
+ prism (~> 1.7)
58
+ ruby-progressbar (1.13.0)
59
+ thor (1.5.0)
60
+ unicode-display_width (2.6.0)
50
61
 
51
62
  PLATFORMS
52
63
  universal-java-11
64
+ x86_64-darwin-24
53
65
  x86_64-linux
54
66
 
55
67
  DEPENDENCIES
56
68
  appraisal (~> 2.4.1)
69
+ base64
57
70
  bundler (>= 2.2.10)
71
+ ostruct
72
+ racc
58
73
  rake (>= 12.3.3)
59
74
  rspec (~> 3.5.0)
60
- rubocop (= 1.21.0)
75
+ rubocop (= 1.40.0)
61
76
  rubocop-checkstyle_formatter!
62
77
 
63
78
  BUNDLED WITH
64
- 2.3.22
79
+ 2.5.22
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rubocop", "1.21.0"
5
+ gem "rubocop", "1.50.2"
6
6
 
7
7
  gemspec path: "../"
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-checkstyle_formatter (0.6.0)
4
+ rubocop-checkstyle_formatter (0.7.0)
5
+ rexml
5
6
  rubocop (>= 1.14.0)
6
7
 
7
8
  GEM
@@ -11,15 +12,23 @@ GEM
11
12
  bundler
12
13
  rake
13
14
  thor (>= 0.14.0)
14
- ast (2.4.2)
15
- diff-lcs (1.5.0)
16
- parallel (1.22.1)
17
- parser (3.1.2.1)
15
+ ast (2.4.3)
16
+ base64 (0.3.0)
17
+ diff-lcs (1.6.2)
18
+ json (2.21.2)
19
+ json (2.21.2-java)
20
+ ostruct (0.6.3)
21
+ parallel (1.28.0)
22
+ parser (3.3.12.0)
18
23
  ast (~> 2.4.1)
24
+ racc
25
+ prism (1.9.0)
26
+ racc (1.8.1)
27
+ racc (1.8.1-java)
19
28
  rainbow (3.1.1)
20
- rake (13.0.6)
21
- regexp_parser (2.5.0)
22
- rexml (3.2.5)
29
+ rake (13.4.2)
30
+ regexp_parser (2.12.0)
31
+ rexml (3.4.4)
23
32
  rspec (3.5.0)
24
33
  rspec-core (~> 3.5.0)
25
34
  rspec-expectations (~> 3.5.0)
@@ -33,32 +42,38 @@ GEM
33
42
  diff-lcs (>= 1.2.0, < 2.0)
34
43
  rspec-support (~> 3.5.0)
35
44
  rspec-support (3.5.0)
36
- rubocop (1.23.0)
45
+ rubocop (1.50.2)
46
+ json (~> 2.3)
37
47
  parallel (~> 1.10)
38
- parser (>= 3.0.0.0)
48
+ parser (>= 3.2.0.0)
39
49
  rainbow (>= 2.2.2, < 4.0)
40
50
  regexp_parser (>= 1.8, < 3.0)
41
- rexml
42
- rubocop-ast (>= 1.12.0, < 2.0)
51
+ rexml (>= 3.2.5, < 4.0)
52
+ rubocop-ast (>= 1.28.0, < 2.0)
43
53
  ruby-progressbar (~> 1.7)
44
- unicode-display_width (>= 1.4.0, < 3.0)
45
- rubocop-ast (1.21.0)
46
- parser (>= 3.1.1.0)
47
- ruby-progressbar (1.11.0)
48
- thor (1.2.1)
49
- unicode-display_width (2.2.0)
54
+ unicode-display_width (>= 2.4.0, < 3.0)
55
+ rubocop-ast (1.50.0)
56
+ parser (>= 3.3.7.2)
57
+ prism (~> 1.7)
58
+ ruby-progressbar (1.13.0)
59
+ thor (1.5.0)
60
+ unicode-display_width (2.6.0)
50
61
 
51
62
  PLATFORMS
52
63
  universal-java-11
64
+ x86_64-darwin-24
53
65
  x86_64-linux
54
66
 
55
67
  DEPENDENCIES
56
68
  appraisal (~> 2.4.1)
69
+ base64
57
70
  bundler (>= 2.2.10)
71
+ ostruct
72
+ racc
58
73
  rake (>= 12.3.3)
59
74
  rspec (~> 3.5.0)
60
- rubocop (= 1.23.0)
75
+ rubocop (= 1.50.2)
61
76
  rubocop-checkstyle_formatter!
62
77
 
63
78
  BUNDLED WITH
64
- 2.3.22
79
+ 2.5.22
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rubocop", "1.20.0"
5
+ gem "rubocop", "1.60.2"
6
6
 
7
7
  gemspec path: "../"