rubocop-checkstyle_formatter 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +5 -4
- data/Appraisals +12 -6
- data/README.md +1 -1
- data/gemfiles/rubocop_1.19.1.gemfile.lock +3 -2
- data/gemfiles/{rubocop_1.14.0.gemfile → rubocop_1.20.0.gemfile} +1 -1
- data/gemfiles/{rubocop_1.16.1.gemfile.lock → rubocop_1.20.0.gemfile.lock} +16 -16
- data/gemfiles/{rubocop_1.16.1.gemfile → rubocop_1.21.0.gemfile} +1 -1
- data/gemfiles/{rubocop_1.14.0.gemfile.lock → rubocop_1.21.0.gemfile.lock} +16 -16
- data/gemfiles/{rubocop_1.15.0.gemfile → rubocop_1.22.3.gemfile} +1 -1
- data/gemfiles/{rubocop_1.17.0.gemfile.lock → rubocop_1.22.3.gemfile.lock} +16 -16
- data/gemfiles/{rubocop_1.17.0.gemfile → rubocop_1.23.0.gemfile} +1 -1
- data/gemfiles/{rubocop_1.15.0.gemfile.lock → rubocop_1.23.0.gemfile.lock} +16 -16
- data/gemfiles/rubocop_1.24.1.gemfile +7 -0
- data/gemfiles/rubocop_1.24.1.gemfile.lock +64 -0
- data/gemfiles/rubocop_1.25.1.gemfile +7 -0
- data/gemfiles/rubocop_1.25.1.gemfile.lock +64 -0
- data/gemfiles/rubocop_1.26.1.gemfile +7 -0
- data/gemfiles/rubocop_1.26.1.gemfile.lock +64 -0
- data/gemfiles/rubocop_1.27.0.gemfile +7 -0
- data/gemfiles/rubocop_1.27.0.gemfile.lock +64 -0
- data/gemfiles/rubocop_1.28.2.gemfile +7 -0
- data/gemfiles/rubocop_1.28.2.gemfile.lock +64 -0
- data/gemfiles/rubocop_1.29.1.gemfile +7 -0
- data/gemfiles/rubocop_1.29.1.gemfile.lock +64 -0
- data/gemfiles/rubocop_1.30.1.gemfile +7 -0
- data/gemfiles/rubocop_1.30.1.gemfile.lock +64 -0
- data/rubocop-checkstyle_formatter.gemspec +1 -1
- metadata +25 -13
- data/gemfiles/rubocop_1.18.4.gemfile +0 -7
- data/gemfiles/rubocop_1.18.4.gemfile.lock +0 -64
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0919c920891074541a66be5e1cbf8ecfc4c93bc6a757346ac1178ada1e031b9c'
|
4
|
+
data.tar.gz: 47ea21d87a5ad484302c2bade747aba1717eeeddb72c111b46ce2e6f7d314b5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 264b44e7ad367281ff84cf6fadb2ceed3d381735ccd8ca16fe18c6b4c59ee13622358ecb1a9f837d65a1c41b0d21e63f2e1fc2e4f1fc6bca60edac91244420f4
|
7
|
+
data.tar.gz: f4d0850304862b6dfa9a1b0daeaf82dedbee36a931e5bf7e3c268ed66156ef42baeb566f08c32aebc827d6bdbf8963ec763b46203ffbff4c6c2aa3292ca35a25
|
data/.github/workflows/build.yml
CHANGED
@@ -5,16 +5,17 @@ jobs:
|
|
5
5
|
strategy:
|
6
6
|
fail-fast: false
|
7
7
|
matrix:
|
8
|
-
ruby: ['2.
|
9
|
-
gemfile: ['1.
|
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']
|
10
10
|
runs-on: ubuntu-latest
|
11
11
|
continue-on-error: ${{ matrix.ruby == 'head' }}
|
12
12
|
env:
|
13
13
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rubocop_${{ matrix.gemfile }}.gemfile
|
14
14
|
steps:
|
15
|
-
- uses: actions/checkout@
|
15
|
+
- uses: actions/checkout@v3
|
16
16
|
- uses: ruby/setup-ruby@v1
|
17
17
|
with:
|
18
|
-
ruby-version: ${{ matrix.ruby }}
|
19
18
|
bundler-cache: true
|
19
|
+
ruby-version: ${{ matrix.ruby }}
|
20
|
+
rubygems: latest
|
20
21
|
- run: bundle exec rspec spec
|
data/Appraisals
CHANGED
@@ -1,10 +1,16 @@
|
|
1
1
|
[
|
2
|
-
'1.
|
3
|
-
'1.
|
4
|
-
'1.
|
5
|
-
'1.
|
6
|
-
'1.
|
7
|
-
'1.
|
2
|
+
'1.19.1',
|
3
|
+
'1.20.0',
|
4
|
+
'1.21.0',
|
5
|
+
'1.22.3',
|
6
|
+
'1.23.0',
|
7
|
+
'1.24.1',
|
8
|
+
'1.25.1',
|
9
|
+
'1.26.1',
|
10
|
+
'1.27.0',
|
11
|
+
'1.28.2',
|
12
|
+
'1.29.1',
|
13
|
+
'1.30.1'
|
8
14
|
].each do |version|
|
9
15
|
appraise "rubocop-#{version}" do
|
10
16
|
gem 'rubocop', version
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# RuboCop Checkstyle Formatter
|
2
2
|
|
3
3
|
A formatter for [RuboCop](https://github.com/rubocop/rubocop) that outputs in checkstyle format.
|
4
|
-
It requires RuboCop version 1.
|
4
|
+
It requires RuboCop version 1.20.0 or above.
|
5
5
|
|
6
6
|
![Build Status](https://github.com/eitoball/rubocop-checkstyle_formatter/actions/workflows/build.yml/badge.svg?branch=master)
|
7
7
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
5
|
rubocop (>= 1.14.0)
|
6
6
|
|
7
7
|
GEM
|
@@ -51,6 +51,7 @@ GEM
|
|
51
51
|
PLATFORMS
|
52
52
|
java
|
53
53
|
ruby
|
54
|
+
universal-java-11
|
54
55
|
|
55
56
|
DEPENDENCIES
|
56
57
|
appraisal (~> 2.4.1)
|
@@ -61,4 +62,4 @@ DEPENDENCIES
|
|
61
62
|
rubocop-checkstyle_formatter!
|
62
63
|
|
63
64
|
BUNDLED WITH
|
64
|
-
2.
|
65
|
+
2.3.22
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
5
|
rubocop (>= 1.14.0)
|
6
6
|
|
7
7
|
GEM
|
@@ -12,13 +12,13 @@ GEM
|
|
12
12
|
rake
|
13
13
|
thor (>= 0.14.0)
|
14
14
|
ast (2.4.2)
|
15
|
-
diff-lcs (1.
|
16
|
-
parallel (1.
|
17
|
-
parser (3.
|
15
|
+
diff-lcs (1.5.0)
|
16
|
+
parallel (1.22.1)
|
17
|
+
parser (3.1.2.1)
|
18
18
|
ast (~> 2.4.1)
|
19
|
-
rainbow (3.
|
19
|
+
rainbow (3.1.1)
|
20
20
|
rake (13.0.6)
|
21
|
-
regexp_parser (2.
|
21
|
+
regexp_parser (2.5.0)
|
22
22
|
rexml (3.2.5)
|
23
23
|
rspec (3.5.0)
|
24
24
|
rspec-core (~> 3.5.0)
|
@@ -33,32 +33,32 @@ GEM
|
|
33
33
|
diff-lcs (>= 1.2.0, < 2.0)
|
34
34
|
rspec-support (~> 3.5.0)
|
35
35
|
rspec-support (3.5.0)
|
36
|
-
rubocop (1.
|
36
|
+
rubocop (1.20.0)
|
37
37
|
parallel (~> 1.10)
|
38
38
|
parser (>= 3.0.0.0)
|
39
39
|
rainbow (>= 2.2.2, < 4.0)
|
40
40
|
regexp_parser (>= 1.8, < 3.0)
|
41
41
|
rexml
|
42
|
-
rubocop-ast (>= 1.
|
42
|
+
rubocop-ast (>= 1.9.1, < 2.0)
|
43
43
|
ruby-progressbar (~> 1.7)
|
44
44
|
unicode-display_width (>= 1.4.0, < 3.0)
|
45
|
-
rubocop-ast (1.
|
46
|
-
parser (>= 3.
|
45
|
+
rubocop-ast (1.21.0)
|
46
|
+
parser (>= 3.1.1.0)
|
47
47
|
ruby-progressbar (1.11.0)
|
48
|
-
thor (1.1
|
49
|
-
unicode-display_width (2.
|
48
|
+
thor (1.2.1)
|
49
|
+
unicode-display_width (2.2.0)
|
50
50
|
|
51
51
|
PLATFORMS
|
52
|
-
java
|
53
|
-
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
54
|
|
55
55
|
DEPENDENCIES
|
56
56
|
appraisal (~> 2.4.1)
|
57
57
|
bundler (>= 2.2.10)
|
58
58
|
rake (>= 12.3.3)
|
59
59
|
rspec (~> 3.5.0)
|
60
|
-
rubocop (= 1.
|
60
|
+
rubocop (= 1.20.0)
|
61
61
|
rubocop-checkstyle_formatter!
|
62
62
|
|
63
63
|
BUNDLED WITH
|
64
|
-
2.
|
64
|
+
2.3.22
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
5
|
rubocop (>= 1.14.0)
|
6
6
|
|
7
7
|
GEM
|
@@ -12,13 +12,13 @@ GEM
|
|
12
12
|
rake
|
13
13
|
thor (>= 0.14.0)
|
14
14
|
ast (2.4.2)
|
15
|
-
diff-lcs (1.
|
16
|
-
parallel (1.
|
17
|
-
parser (3.
|
15
|
+
diff-lcs (1.5.0)
|
16
|
+
parallel (1.22.1)
|
17
|
+
parser (3.1.2.1)
|
18
18
|
ast (~> 2.4.1)
|
19
|
-
rainbow (3.
|
19
|
+
rainbow (3.1.1)
|
20
20
|
rake (13.0.6)
|
21
|
-
regexp_parser (2.
|
21
|
+
regexp_parser (2.5.0)
|
22
22
|
rexml (3.2.5)
|
23
23
|
rspec (3.5.0)
|
24
24
|
rspec-core (~> 3.5.0)
|
@@ -33,32 +33,32 @@ GEM
|
|
33
33
|
diff-lcs (>= 1.2.0, < 2.0)
|
34
34
|
rspec-support (~> 3.5.0)
|
35
35
|
rspec-support (3.5.0)
|
36
|
-
rubocop (1.
|
36
|
+
rubocop (1.21.0)
|
37
37
|
parallel (~> 1.10)
|
38
38
|
parser (>= 3.0.0.0)
|
39
39
|
rainbow (>= 2.2.2, < 4.0)
|
40
40
|
regexp_parser (>= 1.8, < 3.0)
|
41
41
|
rexml
|
42
|
-
rubocop-ast (>= 1.
|
42
|
+
rubocop-ast (>= 1.9.1, < 2.0)
|
43
43
|
ruby-progressbar (~> 1.7)
|
44
44
|
unicode-display_width (>= 1.4.0, < 3.0)
|
45
|
-
rubocop-ast (1.
|
46
|
-
parser (>= 3.
|
45
|
+
rubocop-ast (1.21.0)
|
46
|
+
parser (>= 3.1.1.0)
|
47
47
|
ruby-progressbar (1.11.0)
|
48
|
-
thor (1.1
|
49
|
-
unicode-display_width (2.
|
48
|
+
thor (1.2.1)
|
49
|
+
unicode-display_width (2.2.0)
|
50
50
|
|
51
51
|
PLATFORMS
|
52
|
-
java
|
53
|
-
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
54
|
|
55
55
|
DEPENDENCIES
|
56
56
|
appraisal (~> 2.4.1)
|
57
57
|
bundler (>= 2.2.10)
|
58
58
|
rake (>= 12.3.3)
|
59
59
|
rspec (~> 3.5.0)
|
60
|
-
rubocop (= 1.
|
60
|
+
rubocop (= 1.21.0)
|
61
61
|
rubocop-checkstyle_formatter!
|
62
62
|
|
63
63
|
BUNDLED WITH
|
64
|
-
2.
|
64
|
+
2.3.22
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
5
|
rubocop (>= 1.14.0)
|
6
6
|
|
7
7
|
GEM
|
@@ -12,13 +12,13 @@ GEM
|
|
12
12
|
rake
|
13
13
|
thor (>= 0.14.0)
|
14
14
|
ast (2.4.2)
|
15
|
-
diff-lcs (1.
|
16
|
-
parallel (1.
|
17
|
-
parser (3.
|
15
|
+
diff-lcs (1.5.0)
|
16
|
+
parallel (1.22.1)
|
17
|
+
parser (3.1.2.1)
|
18
18
|
ast (~> 2.4.1)
|
19
|
-
rainbow (3.
|
19
|
+
rainbow (3.1.1)
|
20
20
|
rake (13.0.6)
|
21
|
-
regexp_parser (2.
|
21
|
+
regexp_parser (2.5.0)
|
22
22
|
rexml (3.2.5)
|
23
23
|
rspec (3.5.0)
|
24
24
|
rspec-core (~> 3.5.0)
|
@@ -33,32 +33,32 @@ GEM
|
|
33
33
|
diff-lcs (>= 1.2.0, < 2.0)
|
34
34
|
rspec-support (~> 3.5.0)
|
35
35
|
rspec-support (3.5.0)
|
36
|
-
rubocop (1.
|
36
|
+
rubocop (1.22.3)
|
37
37
|
parallel (~> 1.10)
|
38
38
|
parser (>= 3.0.0.0)
|
39
39
|
rainbow (>= 2.2.2, < 4.0)
|
40
40
|
regexp_parser (>= 1.8, < 3.0)
|
41
41
|
rexml
|
42
|
-
rubocop-ast (>= 1.
|
42
|
+
rubocop-ast (>= 1.12.0, < 2.0)
|
43
43
|
ruby-progressbar (~> 1.7)
|
44
44
|
unicode-display_width (>= 1.4.0, < 3.0)
|
45
|
-
rubocop-ast (1.
|
46
|
-
parser (>= 3.
|
45
|
+
rubocop-ast (1.21.0)
|
46
|
+
parser (>= 3.1.1.0)
|
47
47
|
ruby-progressbar (1.11.0)
|
48
|
-
thor (1.1
|
49
|
-
unicode-display_width (2.
|
48
|
+
thor (1.2.1)
|
49
|
+
unicode-display_width (2.2.0)
|
50
50
|
|
51
51
|
PLATFORMS
|
52
|
-
java
|
53
|
-
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
54
|
|
55
55
|
DEPENDENCIES
|
56
56
|
appraisal (~> 2.4.1)
|
57
57
|
bundler (>= 2.2.10)
|
58
58
|
rake (>= 12.3.3)
|
59
59
|
rspec (~> 3.5.0)
|
60
|
-
rubocop (= 1.
|
60
|
+
rubocop (= 1.22.3)
|
61
61
|
rubocop-checkstyle_formatter!
|
62
62
|
|
63
63
|
BUNDLED WITH
|
64
|
-
2.
|
64
|
+
2.3.22
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
5
|
rubocop (>= 1.14.0)
|
6
6
|
|
7
7
|
GEM
|
@@ -12,13 +12,13 @@ GEM
|
|
12
12
|
rake
|
13
13
|
thor (>= 0.14.0)
|
14
14
|
ast (2.4.2)
|
15
|
-
diff-lcs (1.
|
16
|
-
parallel (1.
|
17
|
-
parser (3.
|
15
|
+
diff-lcs (1.5.0)
|
16
|
+
parallel (1.22.1)
|
17
|
+
parser (3.1.2.1)
|
18
18
|
ast (~> 2.4.1)
|
19
|
-
rainbow (3.
|
19
|
+
rainbow (3.1.1)
|
20
20
|
rake (13.0.6)
|
21
|
-
regexp_parser (2.
|
21
|
+
regexp_parser (2.5.0)
|
22
22
|
rexml (3.2.5)
|
23
23
|
rspec (3.5.0)
|
24
24
|
rspec-core (~> 3.5.0)
|
@@ -33,32 +33,32 @@ GEM
|
|
33
33
|
diff-lcs (>= 1.2.0, < 2.0)
|
34
34
|
rspec-support (~> 3.5.0)
|
35
35
|
rspec-support (3.5.0)
|
36
|
-
rubocop (1.
|
36
|
+
rubocop (1.23.0)
|
37
37
|
parallel (~> 1.10)
|
38
38
|
parser (>= 3.0.0.0)
|
39
39
|
rainbow (>= 2.2.2, < 4.0)
|
40
40
|
regexp_parser (>= 1.8, < 3.0)
|
41
41
|
rexml
|
42
|
-
rubocop-ast (>= 1.
|
42
|
+
rubocop-ast (>= 1.12.0, < 2.0)
|
43
43
|
ruby-progressbar (~> 1.7)
|
44
44
|
unicode-display_width (>= 1.4.0, < 3.0)
|
45
|
-
rubocop-ast (1.
|
46
|
-
parser (>= 3.
|
45
|
+
rubocop-ast (1.21.0)
|
46
|
+
parser (>= 3.1.1.0)
|
47
47
|
ruby-progressbar (1.11.0)
|
48
|
-
thor (1.1
|
49
|
-
unicode-display_width (2.
|
48
|
+
thor (1.2.1)
|
49
|
+
unicode-display_width (2.2.0)
|
50
50
|
|
51
51
|
PLATFORMS
|
52
|
-
java
|
53
|
-
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
54
|
|
55
55
|
DEPENDENCIES
|
56
56
|
appraisal (~> 2.4.1)
|
57
57
|
bundler (>= 2.2.10)
|
58
58
|
rake (>= 12.3.3)
|
59
59
|
rspec (~> 3.5.0)
|
60
|
-
rubocop (= 1.
|
60
|
+
rubocop (= 1.23.0)
|
61
61
|
rubocop-checkstyle_formatter!
|
62
62
|
|
63
63
|
BUNDLED WITH
|
64
|
-
2.
|
64
|
+
2.3.22
|
@@ -0,0 +1,64 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
|
+
rubocop (>= 1.14.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
appraisal (2.4.1)
|
11
|
+
bundler
|
12
|
+
rake
|
13
|
+
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)
|
18
|
+
ast (~> 2.4.1)
|
19
|
+
rainbow (3.1.1)
|
20
|
+
rake (13.0.6)
|
21
|
+
regexp_parser (2.5.0)
|
22
|
+
rexml (3.2.5)
|
23
|
+
rspec (3.5.0)
|
24
|
+
rspec-core (~> 3.5.0)
|
25
|
+
rspec-expectations (~> 3.5.0)
|
26
|
+
rspec-mocks (~> 3.5.0)
|
27
|
+
rspec-core (3.5.4)
|
28
|
+
rspec-support (~> 3.5.0)
|
29
|
+
rspec-expectations (3.5.0)
|
30
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
+
rspec-support (~> 3.5.0)
|
32
|
+
rspec-mocks (3.5.0)
|
33
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
+
rspec-support (~> 3.5.0)
|
35
|
+
rspec-support (3.5.0)
|
36
|
+
rubocop (1.24.1)
|
37
|
+
parallel (~> 1.10)
|
38
|
+
parser (>= 3.0.0.0)
|
39
|
+
rainbow (>= 2.2.2, < 4.0)
|
40
|
+
regexp_parser (>= 1.8, < 3.0)
|
41
|
+
rexml
|
42
|
+
rubocop-ast (>= 1.15.1, < 2.0)
|
43
|
+
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)
|
50
|
+
|
51
|
+
PLATFORMS
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
|
+
|
55
|
+
DEPENDENCIES
|
56
|
+
appraisal (~> 2.4.1)
|
57
|
+
bundler (>= 2.2.10)
|
58
|
+
rake (>= 12.3.3)
|
59
|
+
rspec (~> 3.5.0)
|
60
|
+
rubocop (= 1.24.1)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.3.22
|
@@ -0,0 +1,64 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
|
+
rubocop (>= 1.14.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
appraisal (2.4.1)
|
11
|
+
bundler
|
12
|
+
rake
|
13
|
+
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)
|
18
|
+
ast (~> 2.4.1)
|
19
|
+
rainbow (3.1.1)
|
20
|
+
rake (13.0.6)
|
21
|
+
regexp_parser (2.5.0)
|
22
|
+
rexml (3.2.5)
|
23
|
+
rspec (3.5.0)
|
24
|
+
rspec-core (~> 3.5.0)
|
25
|
+
rspec-expectations (~> 3.5.0)
|
26
|
+
rspec-mocks (~> 3.5.0)
|
27
|
+
rspec-core (3.5.4)
|
28
|
+
rspec-support (~> 3.5.0)
|
29
|
+
rspec-expectations (3.5.0)
|
30
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
+
rspec-support (~> 3.5.0)
|
32
|
+
rspec-mocks (3.5.0)
|
33
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
+
rspec-support (~> 3.5.0)
|
35
|
+
rspec-support (3.5.0)
|
36
|
+
rubocop (1.25.1)
|
37
|
+
parallel (~> 1.10)
|
38
|
+
parser (>= 3.1.0.0)
|
39
|
+
rainbow (>= 2.2.2, < 4.0)
|
40
|
+
regexp_parser (>= 1.8, < 3.0)
|
41
|
+
rexml
|
42
|
+
rubocop-ast (>= 1.15.1, < 2.0)
|
43
|
+
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)
|
50
|
+
|
51
|
+
PLATFORMS
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
|
+
|
55
|
+
DEPENDENCIES
|
56
|
+
appraisal (~> 2.4.1)
|
57
|
+
bundler (>= 2.2.10)
|
58
|
+
rake (>= 12.3.3)
|
59
|
+
rspec (~> 3.5.0)
|
60
|
+
rubocop (= 1.25.1)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.3.22
|
@@ -0,0 +1,64 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
|
+
rubocop (>= 1.14.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
appraisal (2.4.1)
|
11
|
+
bundler
|
12
|
+
rake
|
13
|
+
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)
|
18
|
+
ast (~> 2.4.1)
|
19
|
+
rainbow (3.1.1)
|
20
|
+
rake (13.0.6)
|
21
|
+
regexp_parser (2.5.0)
|
22
|
+
rexml (3.2.5)
|
23
|
+
rspec (3.5.0)
|
24
|
+
rspec-core (~> 3.5.0)
|
25
|
+
rspec-expectations (~> 3.5.0)
|
26
|
+
rspec-mocks (~> 3.5.0)
|
27
|
+
rspec-core (3.5.4)
|
28
|
+
rspec-support (~> 3.5.0)
|
29
|
+
rspec-expectations (3.5.0)
|
30
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
+
rspec-support (~> 3.5.0)
|
32
|
+
rspec-mocks (3.5.0)
|
33
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
+
rspec-support (~> 3.5.0)
|
35
|
+
rspec-support (3.5.0)
|
36
|
+
rubocop (1.26.1)
|
37
|
+
parallel (~> 1.10)
|
38
|
+
parser (>= 3.1.0.0)
|
39
|
+
rainbow (>= 2.2.2, < 4.0)
|
40
|
+
regexp_parser (>= 1.8, < 3.0)
|
41
|
+
rexml
|
42
|
+
rubocop-ast (>= 1.16.0, < 2.0)
|
43
|
+
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)
|
50
|
+
|
51
|
+
PLATFORMS
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
|
+
|
55
|
+
DEPENDENCIES
|
56
|
+
appraisal (~> 2.4.1)
|
57
|
+
bundler (>= 2.2.10)
|
58
|
+
rake (>= 12.3.3)
|
59
|
+
rspec (~> 3.5.0)
|
60
|
+
rubocop (= 1.26.1)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.3.22
|
@@ -0,0 +1,64 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
|
+
rubocop (>= 1.14.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
appraisal (2.4.1)
|
11
|
+
bundler
|
12
|
+
rake
|
13
|
+
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)
|
18
|
+
ast (~> 2.4.1)
|
19
|
+
rainbow (3.1.1)
|
20
|
+
rake (13.0.6)
|
21
|
+
regexp_parser (2.5.0)
|
22
|
+
rexml (3.2.5)
|
23
|
+
rspec (3.5.0)
|
24
|
+
rspec-core (~> 3.5.0)
|
25
|
+
rspec-expectations (~> 3.5.0)
|
26
|
+
rspec-mocks (~> 3.5.0)
|
27
|
+
rspec-core (3.5.4)
|
28
|
+
rspec-support (~> 3.5.0)
|
29
|
+
rspec-expectations (3.5.0)
|
30
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
+
rspec-support (~> 3.5.0)
|
32
|
+
rspec-mocks (3.5.0)
|
33
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
+
rspec-support (~> 3.5.0)
|
35
|
+
rspec-support (3.5.0)
|
36
|
+
rubocop (1.27.0)
|
37
|
+
parallel (~> 1.10)
|
38
|
+
parser (>= 3.1.0.0)
|
39
|
+
rainbow (>= 2.2.2, < 4.0)
|
40
|
+
regexp_parser (>= 1.8, < 3.0)
|
41
|
+
rexml
|
42
|
+
rubocop-ast (>= 1.16.0, < 2.0)
|
43
|
+
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)
|
50
|
+
|
51
|
+
PLATFORMS
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
|
+
|
55
|
+
DEPENDENCIES
|
56
|
+
appraisal (~> 2.4.1)
|
57
|
+
bundler (>= 2.2.10)
|
58
|
+
rake (>= 12.3.3)
|
59
|
+
rspec (~> 3.5.0)
|
60
|
+
rubocop (= 1.27.0)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.3.22
|
@@ -0,0 +1,64 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
|
+
rubocop (>= 1.14.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
appraisal (2.4.1)
|
11
|
+
bundler
|
12
|
+
rake
|
13
|
+
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)
|
18
|
+
ast (~> 2.4.1)
|
19
|
+
rainbow (3.1.1)
|
20
|
+
rake (13.0.6)
|
21
|
+
regexp_parser (2.5.0)
|
22
|
+
rexml (3.2.5)
|
23
|
+
rspec (3.5.0)
|
24
|
+
rspec-core (~> 3.5.0)
|
25
|
+
rspec-expectations (~> 3.5.0)
|
26
|
+
rspec-mocks (~> 3.5.0)
|
27
|
+
rspec-core (3.5.4)
|
28
|
+
rspec-support (~> 3.5.0)
|
29
|
+
rspec-expectations (3.5.0)
|
30
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
+
rspec-support (~> 3.5.0)
|
32
|
+
rspec-mocks (3.5.0)
|
33
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
+
rspec-support (~> 3.5.0)
|
35
|
+
rspec-support (3.5.0)
|
36
|
+
rubocop (1.28.2)
|
37
|
+
parallel (~> 1.10)
|
38
|
+
parser (>= 3.1.0.0)
|
39
|
+
rainbow (>= 2.2.2, < 4.0)
|
40
|
+
regexp_parser (>= 1.8, < 3.0)
|
41
|
+
rexml
|
42
|
+
rubocop-ast (>= 1.17.0, < 2.0)
|
43
|
+
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)
|
50
|
+
|
51
|
+
PLATFORMS
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
|
+
|
55
|
+
DEPENDENCIES
|
56
|
+
appraisal (~> 2.4.1)
|
57
|
+
bundler (>= 2.2.10)
|
58
|
+
rake (>= 12.3.3)
|
59
|
+
rspec (~> 3.5.0)
|
60
|
+
rubocop (= 1.28.2)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.3.22
|
@@ -0,0 +1,64 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
|
+
rubocop (>= 1.14.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
appraisal (2.4.1)
|
11
|
+
bundler
|
12
|
+
rake
|
13
|
+
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)
|
18
|
+
ast (~> 2.4.1)
|
19
|
+
rainbow (3.1.1)
|
20
|
+
rake (13.0.6)
|
21
|
+
regexp_parser (2.5.0)
|
22
|
+
rexml (3.2.5)
|
23
|
+
rspec (3.5.0)
|
24
|
+
rspec-core (~> 3.5.0)
|
25
|
+
rspec-expectations (~> 3.5.0)
|
26
|
+
rspec-mocks (~> 3.5.0)
|
27
|
+
rspec-core (3.5.4)
|
28
|
+
rspec-support (~> 3.5.0)
|
29
|
+
rspec-expectations (3.5.0)
|
30
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
+
rspec-support (~> 3.5.0)
|
32
|
+
rspec-mocks (3.5.0)
|
33
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
+
rspec-support (~> 3.5.0)
|
35
|
+
rspec-support (3.5.0)
|
36
|
+
rubocop (1.29.1)
|
37
|
+
parallel (~> 1.10)
|
38
|
+
parser (>= 3.1.0.0)
|
39
|
+
rainbow (>= 2.2.2, < 4.0)
|
40
|
+
regexp_parser (>= 1.8, < 3.0)
|
41
|
+
rexml (>= 3.2.5, < 4.0)
|
42
|
+
rubocop-ast (>= 1.17.0, < 2.0)
|
43
|
+
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)
|
50
|
+
|
51
|
+
PLATFORMS
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
|
+
|
55
|
+
DEPENDENCIES
|
56
|
+
appraisal (~> 2.4.1)
|
57
|
+
bundler (>= 2.2.10)
|
58
|
+
rake (>= 12.3.3)
|
59
|
+
rspec (~> 3.5.0)
|
60
|
+
rubocop (= 1.29.1)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.3.22
|
@@ -0,0 +1,64 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rubocop-checkstyle_formatter (0.6.0)
|
5
|
+
rubocop (>= 1.14.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
appraisal (2.4.1)
|
11
|
+
bundler
|
12
|
+
rake
|
13
|
+
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)
|
18
|
+
ast (~> 2.4.1)
|
19
|
+
rainbow (3.1.1)
|
20
|
+
rake (13.0.6)
|
21
|
+
regexp_parser (2.5.0)
|
22
|
+
rexml (3.2.5)
|
23
|
+
rspec (3.5.0)
|
24
|
+
rspec-core (~> 3.5.0)
|
25
|
+
rspec-expectations (~> 3.5.0)
|
26
|
+
rspec-mocks (~> 3.5.0)
|
27
|
+
rspec-core (3.5.4)
|
28
|
+
rspec-support (~> 3.5.0)
|
29
|
+
rspec-expectations (3.5.0)
|
30
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
+
rspec-support (~> 3.5.0)
|
32
|
+
rspec-mocks (3.5.0)
|
33
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
+
rspec-support (~> 3.5.0)
|
35
|
+
rspec-support (3.5.0)
|
36
|
+
rubocop (1.30.1)
|
37
|
+
parallel (~> 1.10)
|
38
|
+
parser (>= 3.1.0.0)
|
39
|
+
rainbow (>= 2.2.2, < 4.0)
|
40
|
+
regexp_parser (>= 1.8, < 3.0)
|
41
|
+
rexml (>= 3.2.5, < 4.0)
|
42
|
+
rubocop-ast (>= 1.18.0, < 2.0)
|
43
|
+
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)
|
50
|
+
|
51
|
+
PLATFORMS
|
52
|
+
universal-java-11
|
53
|
+
x86_64-linux
|
54
|
+
|
55
|
+
DEPENDENCIES
|
56
|
+
appraisal (~> 2.4.1)
|
57
|
+
bundler (>= 2.2.10)
|
58
|
+
rake (>= 12.3.3)
|
59
|
+
rspec (~> 3.5.0)
|
60
|
+
rubocop (= 1.30.1)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.3.22
|
@@ -6,7 +6,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
6
6
|
|
7
7
|
Gem::Specification.new do |gem|
|
8
8
|
gem.name = 'rubocop-checkstyle_formatter'
|
9
|
-
gem.version = '0.
|
9
|
+
gem.version = '0.6.0'
|
10
10
|
gem.authors = ['Eito Katagiri']
|
11
11
|
gem.email = ['eitoball@gmail.com']
|
12
12
|
gem.description = 'A formatter for rubocop that outputs in checkstyle format'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-checkstyle_formatter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eito Katagiri
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -96,18 +96,30 @@ files:
|
|
96
96
|
- LICENSE.txt
|
97
97
|
- README.md
|
98
98
|
- Rakefile
|
99
|
-
- gemfiles/rubocop_1.14.0.gemfile
|
100
|
-
- gemfiles/rubocop_1.14.0.gemfile.lock
|
101
|
-
- gemfiles/rubocop_1.15.0.gemfile
|
102
|
-
- gemfiles/rubocop_1.15.0.gemfile.lock
|
103
|
-
- gemfiles/rubocop_1.16.1.gemfile
|
104
|
-
- gemfiles/rubocop_1.16.1.gemfile.lock
|
105
|
-
- gemfiles/rubocop_1.17.0.gemfile
|
106
|
-
- gemfiles/rubocop_1.17.0.gemfile.lock
|
107
|
-
- gemfiles/rubocop_1.18.4.gemfile
|
108
|
-
- gemfiles/rubocop_1.18.4.gemfile.lock
|
109
99
|
- gemfiles/rubocop_1.19.1.gemfile
|
110
100
|
- gemfiles/rubocop_1.19.1.gemfile.lock
|
101
|
+
- gemfiles/rubocop_1.20.0.gemfile
|
102
|
+
- gemfiles/rubocop_1.20.0.gemfile.lock
|
103
|
+
- gemfiles/rubocop_1.21.0.gemfile
|
104
|
+
- gemfiles/rubocop_1.21.0.gemfile.lock
|
105
|
+
- gemfiles/rubocop_1.22.3.gemfile
|
106
|
+
- gemfiles/rubocop_1.22.3.gemfile.lock
|
107
|
+
- gemfiles/rubocop_1.23.0.gemfile
|
108
|
+
- gemfiles/rubocop_1.23.0.gemfile.lock
|
109
|
+
- gemfiles/rubocop_1.24.1.gemfile
|
110
|
+
- gemfiles/rubocop_1.24.1.gemfile.lock
|
111
|
+
- gemfiles/rubocop_1.25.1.gemfile
|
112
|
+
- gemfiles/rubocop_1.25.1.gemfile.lock
|
113
|
+
- gemfiles/rubocop_1.26.1.gemfile
|
114
|
+
- gemfiles/rubocop_1.26.1.gemfile.lock
|
115
|
+
- gemfiles/rubocop_1.27.0.gemfile
|
116
|
+
- gemfiles/rubocop_1.27.0.gemfile.lock
|
117
|
+
- gemfiles/rubocop_1.28.2.gemfile
|
118
|
+
- gemfiles/rubocop_1.28.2.gemfile.lock
|
119
|
+
- gemfiles/rubocop_1.29.1.gemfile
|
120
|
+
- gemfiles/rubocop_1.29.1.gemfile.lock
|
121
|
+
- gemfiles/rubocop_1.30.1.gemfile
|
122
|
+
- gemfiles/rubocop_1.30.1.gemfile.lock
|
111
123
|
- lib/rubocop/formatter/checkstyle_formatter.rb
|
112
124
|
- rubocop-checkstyle_formatter.gemspec
|
113
125
|
- spec/rubocop/formatter/checkstyle_formatter_spec.rb
|
@@ -131,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
131
143
|
- !ruby/object:Gem::Version
|
132
144
|
version: '0'
|
133
145
|
requirements: []
|
134
|
-
rubygems_version: 3.
|
146
|
+
rubygems_version: 3.3.10
|
135
147
|
signing_key:
|
136
148
|
specification_version: 4
|
137
149
|
summary: A formatter for rubocop that outputs in checkstyle format
|
@@ -1,64 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.5.0)
|
5
|
-
rubocop (>= 1.14.0)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
appraisal (2.4.1)
|
11
|
-
bundler
|
12
|
-
rake
|
13
|
-
thor (>= 0.14.0)
|
14
|
-
ast (2.4.2)
|
15
|
-
diff-lcs (1.4.4)
|
16
|
-
parallel (1.20.1)
|
17
|
-
parser (3.0.2.0)
|
18
|
-
ast (~> 2.4.1)
|
19
|
-
rainbow (3.0.0)
|
20
|
-
rake (13.0.6)
|
21
|
-
regexp_parser (2.1.1)
|
22
|
-
rexml (3.2.5)
|
23
|
-
rspec (3.5.0)
|
24
|
-
rspec-core (~> 3.5.0)
|
25
|
-
rspec-expectations (~> 3.5.0)
|
26
|
-
rspec-mocks (~> 3.5.0)
|
27
|
-
rspec-core (3.5.4)
|
28
|
-
rspec-support (~> 3.5.0)
|
29
|
-
rspec-expectations (3.5.0)
|
30
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
-
rspec-support (~> 3.5.0)
|
32
|
-
rspec-mocks (3.5.0)
|
33
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
-
rspec-support (~> 3.5.0)
|
35
|
-
rspec-support (3.5.0)
|
36
|
-
rubocop (1.18.4)
|
37
|
-
parallel (~> 1.10)
|
38
|
-
parser (>= 3.0.0.0)
|
39
|
-
rainbow (>= 2.2.2, < 4.0)
|
40
|
-
regexp_parser (>= 1.8, < 3.0)
|
41
|
-
rexml
|
42
|
-
rubocop-ast (>= 1.8.0, < 2.0)
|
43
|
-
ruby-progressbar (~> 1.7)
|
44
|
-
unicode-display_width (>= 1.4.0, < 3.0)
|
45
|
-
rubocop-ast (1.10.0)
|
46
|
-
parser (>= 3.0.1.1)
|
47
|
-
ruby-progressbar (1.11.0)
|
48
|
-
thor (1.1.0)
|
49
|
-
unicode-display_width (2.0.0)
|
50
|
-
|
51
|
-
PLATFORMS
|
52
|
-
java
|
53
|
-
ruby
|
54
|
-
|
55
|
-
DEPENDENCIES
|
56
|
-
appraisal (~> 2.4.1)
|
57
|
-
bundler (>= 2.2.10)
|
58
|
-
rake (>= 12.3.3)
|
59
|
-
rspec (~> 3.5.0)
|
60
|
-
rubocop (= 1.18.4)
|
61
|
-
rubocop-checkstyle_formatter!
|
62
|
-
|
63
|
-
BUNDLED WITH
|
64
|
-
2.2.25
|