rubocop-checkstyle_formatter 0.4.0 → 0.5.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 (35) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/build.yml +20 -0
  3. data/Appraisals +6 -9
  4. data/Gemfile +1 -0
  5. data/README.md +3 -3
  6. data/gemfiles/{rubocop_0.42.0.gemfile → rubocop_1.14.0.gemfile} +2 -2
  7. data/gemfiles/rubocop_1.14.0.gemfile.lock +64 -0
  8. data/gemfiles/{rubocop_0.40.0.gemfile → rubocop_1.15.0.gemfile} +2 -2
  9. data/gemfiles/rubocop_1.15.0.gemfile.lock +64 -0
  10. data/gemfiles/{rubocop_0.43.0.gemfile → rubocop_1.16.1.gemfile} +2 -2
  11. data/gemfiles/rubocop_1.16.1.gemfile.lock +64 -0
  12. data/gemfiles/{rubocop_0.41.2.gemfile → rubocop_1.17.0.gemfile} +2 -2
  13. data/gemfiles/rubocop_1.17.0.gemfile.lock +64 -0
  14. data/gemfiles/rubocop_1.18.4.gemfile +7 -0
  15. data/gemfiles/rubocop_1.18.4.gemfile.lock +64 -0
  16. data/gemfiles/rubocop_1.19.1.gemfile +7 -0
  17. data/gemfiles/rubocop_1.19.1.gemfile.lock +64 -0
  18. data/rubocop-checkstyle_formatter.gemspec +5 -5
  19. data/spec/rubocop/formatter/checkstyle_formatter_spec.rb +3 -10
  20. metadata +28 -35
  21. data/.travis.yml +0 -28
  22. data/gemfiles/rubocop_0.40.0.gemfile.lock +0 -57
  23. data/gemfiles/rubocop_0.41.2.gemfile.lock +0 -57
  24. data/gemfiles/rubocop_0.42.0.gemfile.lock +0 -57
  25. data/gemfiles/rubocop_0.43.0.gemfile.lock +0 -57
  26. data/gemfiles/rubocop_0.44.1.gemfile +0 -7
  27. data/gemfiles/rubocop_0.44.1.gemfile.lock +0 -57
  28. data/gemfiles/rubocop_0.45.0.gemfile +0 -7
  29. data/gemfiles/rubocop_0.45.0.gemfile.lock +0 -57
  30. data/gemfiles/rubocop_0.46.0.gemfile +0 -7
  31. data/gemfiles/rubocop_0.46.0.gemfile.lock +0 -57
  32. data/gemfiles/rubocop_0.47.1.gemfile +0 -7
  33. data/gemfiles/rubocop_0.47.1.gemfile.lock +0 -57
  34. data/gemfiles/rubocop_0.48.1.gemfile +0 -7
  35. data/gemfiles/rubocop_0.48.1.gemfile.lock +0 -57
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c9142644e3a8ce56fe52f4189b0128650e1134f0
4
- data.tar.gz: 50d79b457b73d6c4ede3207c0c1144122ee6925f
2
+ SHA256:
3
+ metadata.gz: 34290eb428548f9e40dfa84c788d3fe0d656669760e10e9e0dcaff2346c8c86b
4
+ data.tar.gz: 293eec882f0223dea25a2b322ebf271547e4f8d79d03fb962954f487694728e2
5
5
  SHA512:
6
- metadata.gz: dd1abd317c422ef4fd0bcd5939a422ade614b7f95bc176d144d54a79ead05d6d8655bf673ef22374fc1264c9432ab32e2bc2b628b53cf41ba8d84e1d30e2b473
7
- data.tar.gz: 68be8fa4b1aa1960bb803ff5721798d06085af862e3c0a9363ff4470ae67e192f217557874d48010086b59d3b93b7b227b9b5c47226ce72da2ed5119a5e43d90
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
- '0.40.0',
3
- '0.41.2',
4
- '0.42.0',
5
- '0.43.0',
6
- '0.44.1',
7
- '0.45.0',
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
@@ -2,3 +2,4 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in rubocop_checkstyle.gemspec
4
4
  gemspec
5
+ gem 'rake' if RUBY_PLATFORM == 'java'
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # RuboCop Checkstyle Formatter
2
2
 
3
- A formatter for [RuboCop](https://github.com/bbatsov/rubocop) that outputs in checkstyle format.
4
- It requires RuboCop version 0.20.1 or above.
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
- [![Build Status](https://travis-ci.org/eitoball/rubocop-checkstyle_formatter.svg?branch=master)](https://travis-ci.org/eitoball/rubocop-checkstyle_formatter)
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
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rubocop", "0.42.0"
5
+ gem "rubocop", "1.14.0"
6
6
 
7
- gemspec :path => "../"
7
+ gemspec path: "../"
@@ -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
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rubocop", "0.40.0"
5
+ gem "rubocop", "1.15.0"
6
6
 
7
- gemspec :path => "../"
7
+ gemspec path: "../"
@@ -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
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rubocop", "0.43.0"
5
+ gem "rubocop", "1.16.1"
6
6
 
7
- gemspec :path => "../"
7
+ gemspec path: "../"
@@ -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
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rubocop", "0.41.2"
5
+ gem "rubocop", "1.17.0"
6
6
 
7
- gemspec :path => "../"
7
+ gemspec path: "../"
@@ -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,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rubocop", "1.18.4"
6
+
7
+ gemspec path: "../"
@@ -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,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rubocop", "1.19.1"
6
+
7
+ gemspec path: "../"
@@ -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.4.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', '>= 0.35.1'
23
- gem.add_development_dependency 'appraisal', '~> 1.0.0'
24
- gem.add_development_dependency 'bundler', '~> 1.3'
25
- gem.add_development_dependency 'rake', '~> 10.1'
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
- if c.respond_to?(:add_offense)
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.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: 2017-04-23 00:00:00.000000000 Z
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: 0.35.1
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: 0.35.1
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: 1.0.0
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: 1.0.0
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: '1.3'
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: '1.3'
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: '10.1'
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: '10.1'
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/rubocop_0.40.0.gemfile
100
- - gemfiles/rubocop_0.40.0.gemfile.lock
101
- - gemfiles/rubocop_0.41.2.gemfile
102
- - gemfiles/rubocop_0.41.2.gemfile.lock
103
- - gemfiles/rubocop_0.42.0.gemfile
104
- - gemfiles/rubocop_0.42.0.gemfile.lock
105
- - gemfiles/rubocop_0.43.0.gemfile
106
- - gemfiles/rubocop_0.43.0.gemfile.lock
107
- - gemfiles/rubocop_0.44.1.gemfile
108
- - gemfiles/rubocop_0.44.1.gemfile.lock
109
- - gemfiles/rubocop_0.45.0.gemfile
110
- - gemfiles/rubocop_0.45.0.gemfile.lock
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
- rubyforge_project:
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,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rubocop", "0.44.1"
6
-
7
- gemspec :path => "../"
@@ -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,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rubocop", "0.45.0"
6
-
7
- gemspec :path => "../"
@@ -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,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rubocop", "0.46.0"
6
-
7
- gemspec :path => "../"
@@ -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,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rubocop", "0.47.1"
6
-
7
- gemspec :path => "../"
@@ -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,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rubocop", "0.48.1"
6
-
7
- gemspec :path => "../"
@@ -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