rubocop-checkstyle_formatter 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/workflows/build.yml +20 -0
- data/Appraisals +6 -9
- data/Gemfile +1 -0
- data/README.md +3 -3
- data/gemfiles/{rubocop_0.42.0.gemfile → rubocop_1.14.0.gemfile} +2 -2
- data/gemfiles/rubocop_1.14.0.gemfile.lock +64 -0
- data/gemfiles/{rubocop_0.40.0.gemfile → rubocop_1.15.0.gemfile} +2 -2
- data/gemfiles/rubocop_1.15.0.gemfile.lock +64 -0
- data/gemfiles/{rubocop_0.43.0.gemfile → rubocop_1.16.1.gemfile} +2 -2
- data/gemfiles/rubocop_1.16.1.gemfile.lock +64 -0
- data/gemfiles/{rubocop_0.41.2.gemfile → rubocop_1.17.0.gemfile} +2 -2
- data/gemfiles/rubocop_1.17.0.gemfile.lock +64 -0
- data/gemfiles/rubocop_1.18.4.gemfile +7 -0
- data/gemfiles/rubocop_1.18.4.gemfile.lock +64 -0
- data/gemfiles/rubocop_1.19.1.gemfile +7 -0
- data/gemfiles/rubocop_1.19.1.gemfile.lock +64 -0
- data/rubocop-checkstyle_formatter.gemspec +5 -5
- data/spec/rubocop/formatter/checkstyle_formatter_spec.rb +3 -10
- metadata +28 -35
- data/.travis.yml +0 -28
- data/gemfiles/rubocop_0.40.0.gemfile.lock +0 -57
- data/gemfiles/rubocop_0.41.2.gemfile.lock +0 -57
- data/gemfiles/rubocop_0.42.0.gemfile.lock +0 -57
- data/gemfiles/rubocop_0.43.0.gemfile.lock +0 -57
- data/gemfiles/rubocop_0.44.1.gemfile +0 -7
- data/gemfiles/rubocop_0.44.1.gemfile.lock +0 -57
- data/gemfiles/rubocop_0.45.0.gemfile +0 -7
- data/gemfiles/rubocop_0.45.0.gemfile.lock +0 -57
- data/gemfiles/rubocop_0.46.0.gemfile +0 -7
- data/gemfiles/rubocop_0.46.0.gemfile.lock +0 -57
- data/gemfiles/rubocop_0.47.1.gemfile +0 -7
- data/gemfiles/rubocop_0.47.1.gemfile.lock +0 -57
- data/gemfiles/rubocop_0.48.1.gemfile +0 -7
- data/gemfiles/rubocop_0.48.1.gemfile.lock +0 -57
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 34290eb428548f9e40dfa84c788d3fe0d656669760e10e9e0dcaff2346c8c86b
|
4
|
+
data.tar.gz: 293eec882f0223dea25a2b322ebf271547e4f8d79d03fb962954f487694728e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d528710683dd58a3db3882e3f81572ac854fcff735bdd32066e321ab955c4ebaae1f3503eb9f028f59eb298404a47ee43162f8efa651040a8240e9e9aa07c7b9
|
7
|
+
data.tar.gz: b02c1f60149578c2008dc218a5eaf005ae9c038d92d5f0a3ab34b5cb74413d53abf1c347ec0047118acb61360b4935ea805d44abb0bb1eca28e3fce4942fd9bd
|
@@ -0,0 +1,20 @@
|
|
1
|
+
name: Build Workflow
|
2
|
+
on: [push, pull_request]
|
3
|
+
jobs:
|
4
|
+
test:
|
5
|
+
strategy:
|
6
|
+
fail-fast: false
|
7
|
+
matrix:
|
8
|
+
ruby: ['2.5', '2.6', '2.7', '3.0', 'head', 'jruby-9.2.10.0']
|
9
|
+
gemfile: ['1.14.0', '1.15.0', '1.16.1', '1.17.0', '1.18.4', '1.19.1']
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
continue-on-error: ${{ matrix.ruby == 'head' }}
|
12
|
+
env:
|
13
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rubocop_${{ matrix.gemfile }}.gemfile
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@v2
|
16
|
+
- uses: ruby/setup-ruby@v1
|
17
|
+
with:
|
18
|
+
ruby-version: ${{ matrix.ruby }}
|
19
|
+
bundler-cache: true
|
20
|
+
- run: bundle exec rspec spec
|
data/Appraisals
CHANGED
@@ -1,13 +1,10 @@
|
|
1
1
|
[
|
2
|
-
'
|
3
|
-
'
|
4
|
-
'
|
5
|
-
'
|
6
|
-
'
|
7
|
-
'
|
8
|
-
'0.46.0',
|
9
|
-
'0.47.1',
|
10
|
-
'0.48.1'
|
2
|
+
'1.14.0',
|
3
|
+
'1.15.0',
|
4
|
+
'1.16.1',
|
5
|
+
'1.17.0',
|
6
|
+
'1.18.4',
|
7
|
+
'1.19.1'
|
11
8
|
].each do |version|
|
12
9
|
appraise "rubocop-#{version}" do
|
13
10
|
gem 'rubocop', version
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# RuboCop Checkstyle Formatter
|
2
2
|
|
3
|
-
A formatter for [RuboCop](https://github.com/
|
4
|
-
It requires RuboCop version
|
3
|
+
A formatter for [RuboCop](https://github.com/rubocop/rubocop) that outputs in checkstyle format.
|
4
|
+
It requires RuboCop version 1.14.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
|
|
8
8
|
## Installation
|
9
9
|
|
@@ -0,0 +1,64 @@
|
|
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.14.0)
|
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.5.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.14.0)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.2.25
|
@@ -0,0 +1,64 @@
|
|
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.15.0)
|
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.5.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.15.0)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.2.25
|
@@ -0,0 +1,64 @@
|
|
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.16.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.7.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.16.1)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.2.25
|
@@ -0,0 +1,64 @@
|
|
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.17.0)
|
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.7.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.17.0)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.2.25
|
@@ -0,0 +1,64 @@
|
|
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
|
@@ -0,0 +1,64 @@
|
|
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.19.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.9.1, < 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.19.1)
|
61
|
+
rubocop-checkstyle_formatter!
|
62
|
+
|
63
|
+
BUNDLED WITH
|
64
|
+
2.2.25
|
@@ -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.5.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'
|
@@ -19,9 +19,9 @@ Gem::Specification.new do |gem|
|
|
19
19
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
20
20
|
gem.require_paths = ['lib']
|
21
21
|
|
22
|
-
gem.add_dependency 'rubocop', '>=
|
23
|
-
gem.add_development_dependency 'appraisal', '~>
|
24
|
-
gem.add_development_dependency 'bundler', '
|
25
|
-
gem.add_development_dependency 'rake', '
|
22
|
+
gem.add_dependency 'rubocop', '>= 1.14.0'
|
23
|
+
gem.add_development_dependency 'appraisal', '~> 2.4.1'
|
24
|
+
gem.add_development_dependency 'bundler', '>= 2.2.10'
|
25
|
+
gem.add_development_dependency 'rake', '>= 12.3.3'
|
26
26
|
gem.add_development_dependency 'rspec', '~> 3.5.0'
|
27
27
|
end
|
@@ -10,17 +10,10 @@ module RuboCop
|
|
10
10
|
let(:severities) { %i[refactor convention warning error fatal] }
|
11
11
|
let(:cop) do
|
12
12
|
Cop::Cop.new.tap do |c|
|
13
|
+
c.send(:begin_investigation, RuboCop::ProcessedSource.new(file, 2.7, 'sample.rb'))
|
13
14
|
source_buffer = Parser::Source::Buffer.new('sample.rb', 1).tap { |b| b.source = '' }
|
14
15
|
severities.each_with_index do |severity, index|
|
15
|
-
|
16
|
-
c.add_offense(nil, Parser::Source::Range.new(source_buffer, 0, index), severity.to_s, severity)
|
17
|
-
else
|
18
|
-
begin
|
19
|
-
c.add_offence(severity, nil, Parser::Source::Range.new(source_buffer, 0, index), severity.to_s)
|
20
|
-
rescue
|
21
|
-
c.add_offence(nil, Parser::Source::Range.new(source_buffer, 0, index), severity.to_s, severity)
|
22
|
-
end
|
23
|
-
end
|
16
|
+
c.add_offense(nil, location: Parser::Source::Range.new(source_buffer, 0, index), message: severity.to_s)
|
24
17
|
end
|
25
18
|
end
|
26
19
|
end
|
@@ -67,7 +60,7 @@ module RuboCop
|
|
67
60
|
formatter.finished([file])
|
68
61
|
doc = REXML::Document.new(output.string)
|
69
62
|
file = REXML::XPath.first(doc, '/checkstyle/file')
|
70
|
-
expect(Pathname.new(file['name'])).to be_absolute
|
63
|
+
expect(Pathname.new(file.attributes['name'])).to be_absolute
|
71
64
|
end
|
72
65
|
end
|
73
66
|
end
|
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.5.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: 2021-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -16,56 +16,56 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 1.14.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 1.14.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: appraisal
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 2.4.1
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 2.4.1
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 2.2.10
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 2.2.10
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rake
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
61
|
+
version: 12.3.3
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
68
|
+
version: 12.3.3
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rspec
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -87,33 +87,27 @@ executables: []
|
|
87
87
|
extensions: []
|
88
88
|
extra_rdoc_files: []
|
89
89
|
files:
|
90
|
+
- ".github/workflows/build.yml"
|
90
91
|
- ".gitignore"
|
91
92
|
- ".rubocop.yml"
|
92
93
|
- ".rubocop_todo.yml"
|
93
|
-
- ".travis.yml"
|
94
94
|
- Appraisals
|
95
95
|
- Gemfile
|
96
96
|
- LICENSE.txt
|
97
97
|
- README.md
|
98
98
|
- Rakefile
|
99
|
-
- gemfiles/
|
100
|
-
- gemfiles/
|
101
|
-
- gemfiles/
|
102
|
-
- gemfiles/
|
103
|
-
- gemfiles/
|
104
|
-
- gemfiles/
|
105
|
-
- gemfiles/
|
106
|
-
- gemfiles/
|
107
|
-
- gemfiles/
|
108
|
-
- gemfiles/
|
109
|
-
- gemfiles/
|
110
|
-
- gemfiles/
|
111
|
-
- gemfiles/rubocop_0.46.0.gemfile
|
112
|
-
- gemfiles/rubocop_0.46.0.gemfile.lock
|
113
|
-
- gemfiles/rubocop_0.47.1.gemfile
|
114
|
-
- gemfiles/rubocop_0.47.1.gemfile.lock
|
115
|
-
- gemfiles/rubocop_0.48.1.gemfile
|
116
|
-
- gemfiles/rubocop_0.48.1.gemfile.lock
|
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
|
+
- gemfiles/rubocop_1.19.1.gemfile
|
110
|
+
- gemfiles/rubocop_1.19.1.gemfile.lock
|
117
111
|
- lib/rubocop/formatter/checkstyle_formatter.rb
|
118
112
|
- rubocop-checkstyle_formatter.gemspec
|
119
113
|
- spec/rubocop/formatter/checkstyle_formatter_spec.rb
|
@@ -137,8 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
137
131
|
- !ruby/object:Gem::Version
|
138
132
|
version: '0'
|
139
133
|
requirements: []
|
140
|
-
|
141
|
-
rubygems_version: 2.6.11
|
134
|
+
rubygems_version: 3.2.9
|
142
135
|
signing_key:
|
143
136
|
specification_version: 4
|
144
137
|
summary: A formatter for rubocop that outputs in checkstyle format
|
data/.travis.yml
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
sudo: false
|
2
|
-
cache: bundler
|
3
|
-
language: ruby
|
4
|
-
rvm:
|
5
|
-
- 2.2.7
|
6
|
-
- 2.3.4
|
7
|
-
- 2.4.1
|
8
|
-
- ruby-head
|
9
|
-
- jruby-9.1.5.0
|
10
|
-
gemfile:
|
11
|
-
- gemfiles/rubocop_0.40.0.gemfile
|
12
|
-
- gemfiles/rubocop_0.41.2.gemfile
|
13
|
-
- gemfiles/rubocop_0.42.0.gemfile
|
14
|
-
- gemfiles/rubocop_0.43.0.gemfile
|
15
|
-
- gemfiles/rubocop_0.44.1.gemfile
|
16
|
-
- gemfiles/rubocop_0.45.0.gemfile
|
17
|
-
- gemfiles/rubocop_0.46.0.gemfile
|
18
|
-
- gemfiles/rubocop_0.47.1.gemfile
|
19
|
-
- gemfiles/rubocop_0.48.1.gemfile
|
20
|
-
matrix:
|
21
|
-
allow_failures:
|
22
|
-
- rvm: ruby-head
|
23
|
-
fast_finish: true
|
24
|
-
before_install: gem update --remote bundler
|
25
|
-
install:
|
26
|
-
- bundle install --retry=3
|
27
|
-
script:
|
28
|
-
- bundle exec rake spec
|
@@ -1,57 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.3.0)
|
5
|
-
rubocop (>= 0.30.1)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
appraisal (1.0.3)
|
11
|
-
bundler
|
12
|
-
rake
|
13
|
-
thor (>= 0.14.0)
|
14
|
-
ast (2.3.0)
|
15
|
-
diff-lcs (1.3)
|
16
|
-
parser (2.4.0.0)
|
17
|
-
ast (~> 2.2)
|
18
|
-
powerpack (0.1.1)
|
19
|
-
rainbow (2.2.2)
|
20
|
-
rake
|
21
|
-
rake (10.5.0)
|
22
|
-
rspec (3.5.0)
|
23
|
-
rspec-core (~> 3.5.0)
|
24
|
-
rspec-expectations (~> 3.5.0)
|
25
|
-
rspec-mocks (~> 3.5.0)
|
26
|
-
rspec-core (3.5.4)
|
27
|
-
rspec-support (~> 3.5.0)
|
28
|
-
rspec-expectations (3.5.0)
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.5.0)
|
31
|
-
rspec-mocks (3.5.0)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.5.0)
|
34
|
-
rspec-support (3.5.0)
|
35
|
-
rubocop (0.40.0)
|
36
|
-
parser (>= 2.3.1.0, < 3.0)
|
37
|
-
powerpack (~> 0.1)
|
38
|
-
rainbow (>= 1.99.1, < 3.0)
|
39
|
-
ruby-progressbar (~> 1.7)
|
40
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
41
|
-
ruby-progressbar (1.8.1)
|
42
|
-
thor (0.19.4)
|
43
|
-
unicode-display_width (1.2.1)
|
44
|
-
|
45
|
-
PLATFORMS
|
46
|
-
ruby
|
47
|
-
|
48
|
-
DEPENDENCIES
|
49
|
-
appraisal (~> 1.0.0)
|
50
|
-
bundler (~> 1.3)
|
51
|
-
rake (~> 10.1)
|
52
|
-
rspec (~> 3.5.0)
|
53
|
-
rubocop (= 0.40.0)
|
54
|
-
rubocop-checkstyle_formatter!
|
55
|
-
|
56
|
-
BUNDLED WITH
|
57
|
-
1.14.6
|
@@ -1,57 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.3.0)
|
5
|
-
rubocop (>= 0.30.1)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
appraisal (1.0.3)
|
11
|
-
bundler
|
12
|
-
rake
|
13
|
-
thor (>= 0.14.0)
|
14
|
-
ast (2.3.0)
|
15
|
-
diff-lcs (1.3)
|
16
|
-
parser (2.4.0.0)
|
17
|
-
ast (~> 2.2)
|
18
|
-
powerpack (0.1.1)
|
19
|
-
rainbow (2.2.2)
|
20
|
-
rake
|
21
|
-
rake (10.5.0)
|
22
|
-
rspec (3.5.0)
|
23
|
-
rspec-core (~> 3.5.0)
|
24
|
-
rspec-expectations (~> 3.5.0)
|
25
|
-
rspec-mocks (~> 3.5.0)
|
26
|
-
rspec-core (3.5.4)
|
27
|
-
rspec-support (~> 3.5.0)
|
28
|
-
rspec-expectations (3.5.0)
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.5.0)
|
31
|
-
rspec-mocks (3.5.0)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.5.0)
|
34
|
-
rspec-support (3.5.0)
|
35
|
-
rubocop (0.41.2)
|
36
|
-
parser (>= 2.3.1.1, < 3.0)
|
37
|
-
powerpack (~> 0.1)
|
38
|
-
rainbow (>= 1.99.1, < 3.0)
|
39
|
-
ruby-progressbar (~> 1.7)
|
40
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
41
|
-
ruby-progressbar (1.8.1)
|
42
|
-
thor (0.19.4)
|
43
|
-
unicode-display_width (1.2.1)
|
44
|
-
|
45
|
-
PLATFORMS
|
46
|
-
ruby
|
47
|
-
|
48
|
-
DEPENDENCIES
|
49
|
-
appraisal (~> 1.0.0)
|
50
|
-
bundler (~> 1.3)
|
51
|
-
rake (~> 10.1)
|
52
|
-
rspec (~> 3.5.0)
|
53
|
-
rubocop (= 0.41.2)
|
54
|
-
rubocop-checkstyle_formatter!
|
55
|
-
|
56
|
-
BUNDLED WITH
|
57
|
-
1.14.6
|
@@ -1,57 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.3.0)
|
5
|
-
rubocop (>= 0.30.1)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
appraisal (1.0.3)
|
11
|
-
bundler
|
12
|
-
rake
|
13
|
-
thor (>= 0.14.0)
|
14
|
-
ast (2.3.0)
|
15
|
-
diff-lcs (1.3)
|
16
|
-
parser (2.4.0.0)
|
17
|
-
ast (~> 2.2)
|
18
|
-
powerpack (0.1.1)
|
19
|
-
rainbow (2.2.2)
|
20
|
-
rake
|
21
|
-
rake (10.5.0)
|
22
|
-
rspec (3.5.0)
|
23
|
-
rspec-core (~> 3.5.0)
|
24
|
-
rspec-expectations (~> 3.5.0)
|
25
|
-
rspec-mocks (~> 3.5.0)
|
26
|
-
rspec-core (3.5.4)
|
27
|
-
rspec-support (~> 3.5.0)
|
28
|
-
rspec-expectations (3.5.0)
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.5.0)
|
31
|
-
rspec-mocks (3.5.0)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.5.0)
|
34
|
-
rspec-support (3.5.0)
|
35
|
-
rubocop (0.42.0)
|
36
|
-
parser (>= 2.3.1.1, < 3.0)
|
37
|
-
powerpack (~> 0.1)
|
38
|
-
rainbow (>= 1.99.1, < 3.0)
|
39
|
-
ruby-progressbar (~> 1.7)
|
40
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
41
|
-
ruby-progressbar (1.8.1)
|
42
|
-
thor (0.19.4)
|
43
|
-
unicode-display_width (1.2.1)
|
44
|
-
|
45
|
-
PLATFORMS
|
46
|
-
ruby
|
47
|
-
|
48
|
-
DEPENDENCIES
|
49
|
-
appraisal (~> 1.0.0)
|
50
|
-
bundler (~> 1.3)
|
51
|
-
rake (~> 10.1)
|
52
|
-
rspec (~> 3.5.0)
|
53
|
-
rubocop (= 0.42.0)
|
54
|
-
rubocop-checkstyle_formatter!
|
55
|
-
|
56
|
-
BUNDLED WITH
|
57
|
-
1.14.6
|
@@ -1,57 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.3.0)
|
5
|
-
rubocop (>= 0.30.1)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
appraisal (1.0.3)
|
11
|
-
bundler
|
12
|
-
rake
|
13
|
-
thor (>= 0.14.0)
|
14
|
-
ast (2.3.0)
|
15
|
-
diff-lcs (1.3)
|
16
|
-
parser (2.4.0.0)
|
17
|
-
ast (~> 2.2)
|
18
|
-
powerpack (0.1.1)
|
19
|
-
rainbow (2.2.2)
|
20
|
-
rake
|
21
|
-
rake (10.5.0)
|
22
|
-
rspec (3.5.0)
|
23
|
-
rspec-core (~> 3.5.0)
|
24
|
-
rspec-expectations (~> 3.5.0)
|
25
|
-
rspec-mocks (~> 3.5.0)
|
26
|
-
rspec-core (3.5.4)
|
27
|
-
rspec-support (~> 3.5.0)
|
28
|
-
rspec-expectations (3.5.0)
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.5.0)
|
31
|
-
rspec-mocks (3.5.0)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.5.0)
|
34
|
-
rspec-support (3.5.0)
|
35
|
-
rubocop (0.43.0)
|
36
|
-
parser (>= 2.3.1.1, < 3.0)
|
37
|
-
powerpack (~> 0.1)
|
38
|
-
rainbow (>= 1.99.1, < 3.0)
|
39
|
-
ruby-progressbar (~> 1.7)
|
40
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
41
|
-
ruby-progressbar (1.8.1)
|
42
|
-
thor (0.19.4)
|
43
|
-
unicode-display_width (1.2.1)
|
44
|
-
|
45
|
-
PLATFORMS
|
46
|
-
ruby
|
47
|
-
|
48
|
-
DEPENDENCIES
|
49
|
-
appraisal (~> 1.0.0)
|
50
|
-
bundler (~> 1.3)
|
51
|
-
rake (~> 10.1)
|
52
|
-
rspec (~> 3.5.0)
|
53
|
-
rubocop (= 0.43.0)
|
54
|
-
rubocop-checkstyle_formatter!
|
55
|
-
|
56
|
-
BUNDLED WITH
|
57
|
-
1.14.6
|
@@ -1,57 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.3.0)
|
5
|
-
rubocop (>= 0.30.1)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
appraisal (1.0.3)
|
11
|
-
bundler
|
12
|
-
rake
|
13
|
-
thor (>= 0.14.0)
|
14
|
-
ast (2.3.0)
|
15
|
-
diff-lcs (1.3)
|
16
|
-
parser (2.4.0.0)
|
17
|
-
ast (~> 2.2)
|
18
|
-
powerpack (0.1.1)
|
19
|
-
rainbow (2.2.2)
|
20
|
-
rake
|
21
|
-
rake (10.5.0)
|
22
|
-
rspec (3.5.0)
|
23
|
-
rspec-core (~> 3.5.0)
|
24
|
-
rspec-expectations (~> 3.5.0)
|
25
|
-
rspec-mocks (~> 3.5.0)
|
26
|
-
rspec-core (3.5.4)
|
27
|
-
rspec-support (~> 3.5.0)
|
28
|
-
rspec-expectations (3.5.0)
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.5.0)
|
31
|
-
rspec-mocks (3.5.0)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.5.0)
|
34
|
-
rspec-support (3.5.0)
|
35
|
-
rubocop (0.44.1)
|
36
|
-
parser (>= 2.3.1.1, < 3.0)
|
37
|
-
powerpack (~> 0.1)
|
38
|
-
rainbow (>= 1.99.1, < 3.0)
|
39
|
-
ruby-progressbar (~> 1.7)
|
40
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
41
|
-
ruby-progressbar (1.8.1)
|
42
|
-
thor (0.19.4)
|
43
|
-
unicode-display_width (1.2.1)
|
44
|
-
|
45
|
-
PLATFORMS
|
46
|
-
ruby
|
47
|
-
|
48
|
-
DEPENDENCIES
|
49
|
-
appraisal (~> 1.0.0)
|
50
|
-
bundler (~> 1.3)
|
51
|
-
rake (~> 10.1)
|
52
|
-
rspec (~> 3.5.0)
|
53
|
-
rubocop (= 0.44.1)
|
54
|
-
rubocop-checkstyle_formatter!
|
55
|
-
|
56
|
-
BUNDLED WITH
|
57
|
-
1.14.6
|
@@ -1,57 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.3.0)
|
5
|
-
rubocop (>= 0.30.1)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
appraisal (1.0.3)
|
11
|
-
bundler
|
12
|
-
rake
|
13
|
-
thor (>= 0.14.0)
|
14
|
-
ast (2.3.0)
|
15
|
-
diff-lcs (1.3)
|
16
|
-
parser (2.4.0.0)
|
17
|
-
ast (~> 2.2)
|
18
|
-
powerpack (0.1.1)
|
19
|
-
rainbow (2.2.2)
|
20
|
-
rake
|
21
|
-
rake (10.5.0)
|
22
|
-
rspec (3.5.0)
|
23
|
-
rspec-core (~> 3.5.0)
|
24
|
-
rspec-expectations (~> 3.5.0)
|
25
|
-
rspec-mocks (~> 3.5.0)
|
26
|
-
rspec-core (3.5.4)
|
27
|
-
rspec-support (~> 3.5.0)
|
28
|
-
rspec-expectations (3.5.0)
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.5.0)
|
31
|
-
rspec-mocks (3.5.0)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.5.0)
|
34
|
-
rspec-support (3.5.0)
|
35
|
-
rubocop (0.45.0)
|
36
|
-
parser (>= 2.3.1.1, < 3.0)
|
37
|
-
powerpack (~> 0.1)
|
38
|
-
rainbow (>= 1.99.1, < 3.0)
|
39
|
-
ruby-progressbar (~> 1.7)
|
40
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
41
|
-
ruby-progressbar (1.8.1)
|
42
|
-
thor (0.19.4)
|
43
|
-
unicode-display_width (1.2.1)
|
44
|
-
|
45
|
-
PLATFORMS
|
46
|
-
ruby
|
47
|
-
|
48
|
-
DEPENDENCIES
|
49
|
-
appraisal (~> 1.0.0)
|
50
|
-
bundler (~> 1.3)
|
51
|
-
rake (~> 10.1)
|
52
|
-
rspec (~> 3.5.0)
|
53
|
-
rubocop (= 0.45.0)
|
54
|
-
rubocop-checkstyle_formatter!
|
55
|
-
|
56
|
-
BUNDLED WITH
|
57
|
-
1.14.6
|
@@ -1,57 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.3.0)
|
5
|
-
rubocop (>= 0.30.1)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
appraisal (1.0.3)
|
11
|
-
bundler
|
12
|
-
rake
|
13
|
-
thor (>= 0.14.0)
|
14
|
-
ast (2.3.0)
|
15
|
-
diff-lcs (1.3)
|
16
|
-
parser (2.4.0.0)
|
17
|
-
ast (~> 2.2)
|
18
|
-
powerpack (0.1.1)
|
19
|
-
rainbow (2.2.2)
|
20
|
-
rake
|
21
|
-
rake (10.5.0)
|
22
|
-
rspec (3.5.0)
|
23
|
-
rspec-core (~> 3.5.0)
|
24
|
-
rspec-expectations (~> 3.5.0)
|
25
|
-
rspec-mocks (~> 3.5.0)
|
26
|
-
rspec-core (3.5.4)
|
27
|
-
rspec-support (~> 3.5.0)
|
28
|
-
rspec-expectations (3.5.0)
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.5.0)
|
31
|
-
rspec-mocks (3.5.0)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.5.0)
|
34
|
-
rspec-support (3.5.0)
|
35
|
-
rubocop (0.46.0)
|
36
|
-
parser (>= 2.3.1.1, < 3.0)
|
37
|
-
powerpack (~> 0.1)
|
38
|
-
rainbow (>= 1.99.1, < 3.0)
|
39
|
-
ruby-progressbar (~> 1.7)
|
40
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
41
|
-
ruby-progressbar (1.8.1)
|
42
|
-
thor (0.19.4)
|
43
|
-
unicode-display_width (1.2.1)
|
44
|
-
|
45
|
-
PLATFORMS
|
46
|
-
ruby
|
47
|
-
|
48
|
-
DEPENDENCIES
|
49
|
-
appraisal (~> 1.0.0)
|
50
|
-
bundler (~> 1.3)
|
51
|
-
rake (~> 10.1)
|
52
|
-
rspec (~> 3.5.0)
|
53
|
-
rubocop (= 0.46.0)
|
54
|
-
rubocop-checkstyle_formatter!
|
55
|
-
|
56
|
-
BUNDLED WITH
|
57
|
-
1.14.6
|
@@ -1,57 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.3.0)
|
5
|
-
rubocop (>= 0.30.1)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
appraisal (1.0.3)
|
11
|
-
bundler
|
12
|
-
rake
|
13
|
-
thor (>= 0.14.0)
|
14
|
-
ast (2.3.0)
|
15
|
-
diff-lcs (1.3)
|
16
|
-
parser (2.4.0.0)
|
17
|
-
ast (~> 2.2)
|
18
|
-
powerpack (0.1.1)
|
19
|
-
rainbow (2.2.2)
|
20
|
-
rake
|
21
|
-
rake (10.5.0)
|
22
|
-
rspec (3.5.0)
|
23
|
-
rspec-core (~> 3.5.0)
|
24
|
-
rspec-expectations (~> 3.5.0)
|
25
|
-
rspec-mocks (~> 3.5.0)
|
26
|
-
rspec-core (3.5.4)
|
27
|
-
rspec-support (~> 3.5.0)
|
28
|
-
rspec-expectations (3.5.0)
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.5.0)
|
31
|
-
rspec-mocks (3.5.0)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.5.0)
|
34
|
-
rspec-support (3.5.0)
|
35
|
-
rubocop (0.47.1)
|
36
|
-
parser (>= 2.3.3.1, < 3.0)
|
37
|
-
powerpack (~> 0.1)
|
38
|
-
rainbow (>= 1.99.1, < 3.0)
|
39
|
-
ruby-progressbar (~> 1.7)
|
40
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
41
|
-
ruby-progressbar (1.8.1)
|
42
|
-
thor (0.19.4)
|
43
|
-
unicode-display_width (1.2.1)
|
44
|
-
|
45
|
-
PLATFORMS
|
46
|
-
ruby
|
47
|
-
|
48
|
-
DEPENDENCIES
|
49
|
-
appraisal (~> 1.0.0)
|
50
|
-
bundler (~> 1.3)
|
51
|
-
rake (~> 10.1)
|
52
|
-
rspec (~> 3.5.0)
|
53
|
-
rubocop (= 0.47.1)
|
54
|
-
rubocop-checkstyle_formatter!
|
55
|
-
|
56
|
-
BUNDLED WITH
|
57
|
-
1.14.6
|
@@ -1,57 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
rubocop-checkstyle_formatter (0.3.0)
|
5
|
-
rubocop (>= 0.30.1)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
appraisal (1.0.3)
|
11
|
-
bundler
|
12
|
-
rake
|
13
|
-
thor (>= 0.14.0)
|
14
|
-
ast (2.3.0)
|
15
|
-
diff-lcs (1.3)
|
16
|
-
parser (2.4.0.0)
|
17
|
-
ast (~> 2.2)
|
18
|
-
powerpack (0.1.1)
|
19
|
-
rainbow (2.2.2)
|
20
|
-
rake
|
21
|
-
rake (10.5.0)
|
22
|
-
rspec (3.5.0)
|
23
|
-
rspec-core (~> 3.5.0)
|
24
|
-
rspec-expectations (~> 3.5.0)
|
25
|
-
rspec-mocks (~> 3.5.0)
|
26
|
-
rspec-core (3.5.4)
|
27
|
-
rspec-support (~> 3.5.0)
|
28
|
-
rspec-expectations (3.5.0)
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.5.0)
|
31
|
-
rspec-mocks (3.5.0)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.5.0)
|
34
|
-
rspec-support (3.5.0)
|
35
|
-
rubocop (0.48.1)
|
36
|
-
parser (>= 2.3.3.1, < 3.0)
|
37
|
-
powerpack (~> 0.1)
|
38
|
-
rainbow (>= 1.99.1, < 3.0)
|
39
|
-
ruby-progressbar (~> 1.7)
|
40
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
41
|
-
ruby-progressbar (1.8.1)
|
42
|
-
thor (0.19.4)
|
43
|
-
unicode-display_width (1.2.1)
|
44
|
-
|
45
|
-
PLATFORMS
|
46
|
-
ruby
|
47
|
-
|
48
|
-
DEPENDENCIES
|
49
|
-
appraisal (~> 1.0.0)
|
50
|
-
bundler (~> 1.3)
|
51
|
-
rake (~> 10.1)
|
52
|
-
rspec (~> 3.5.0)
|
53
|
-
rubocop (= 0.48.1)
|
54
|
-
rubocop-checkstyle_formatter!
|
55
|
-
|
56
|
-
BUNDLED WITH
|
57
|
-
1.14.6
|