rubocop-checkstyle_formatter 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +23 -24
  3. data/Appraisals +13 -11
  4. data/README.md +2 -2
  5. data/gemfiles/rubocop_0.30.1.gemfile.lock +17 -9
  6. data/gemfiles/{rubocop_0.20.1.gemfile → rubocop_0.31.0.gemfile} +1 -1
  7. data/gemfiles/rubocop_0.31.0.gemfile.lock +57 -0
  8. data/gemfiles/{rubocop_0.22.0.gemfile → rubocop_0.32.1.gemfile} +1 -1
  9. data/gemfiles/rubocop_0.32.1.gemfile.lock +57 -0
  10. data/gemfiles/{rubocop_0.21.0.gemfile → rubocop_0.33.0.gemfile} +1 -1
  11. data/gemfiles/rubocop_0.33.0.gemfile.lock +57 -0
  12. data/gemfiles/{rubocop_0.23.0.gemfile → rubocop_0.34.2.gemfile} +1 -1
  13. data/gemfiles/rubocop_0.34.2.gemfile.lock +57 -0
  14. data/gemfiles/rubocop_0.35.1.gemfile +7 -0
  15. data/gemfiles/rubocop_0.35.1.gemfile.lock +59 -0
  16. data/gemfiles/rubocop_0.36.0.gemfile +7 -0
  17. data/gemfiles/rubocop_0.36.0.gemfile.lock +54 -0
  18. data/gemfiles/rubocop_0.37.2.gemfile +7 -0
  19. data/gemfiles/rubocop_0.37.2.gemfile.lock +56 -0
  20. data/gemfiles/rubocop_0.38.0.gemfile +7 -0
  21. data/gemfiles/rubocop_0.38.0.gemfile.lock +56 -0
  22. data/gemfiles/rubocop_0.39.0.gemfile +7 -0
  23. data/gemfiles/rubocop_0.39.0.gemfile.lock +56 -0
  24. data/gemfiles/rubocop_0.40.0.gemfile +7 -0
  25. data/gemfiles/rubocop_0.40.0.gemfile.lock +56 -0
  26. data/gemfiles/rubocop_0.41.2.gemfile +7 -0
  27. data/gemfiles/rubocop_0.41.2.gemfile.lock +56 -0
  28. data/gemfiles/rubocop_0.42.0.gemfile +7 -0
  29. data/gemfiles/rubocop_0.42.0.gemfile.lock +56 -0
  30. data/lib/rubocop/formatter/checkstyle_formatter.rb +1 -0
  31. data/rubocop-checkstyle_formatter.gemspec +3 -3
  32. metadata +31 -27
  33. data/gemfiles/rubocop_0.20.1.gemfile.lock +0 -50
  34. data/gemfiles/rubocop_0.21.0.gemfile.lock +0 -50
  35. data/gemfiles/rubocop_0.22.0.gemfile.lock +0 -50
  36. data/gemfiles/rubocop_0.23.0.gemfile.lock +0 -50
  37. data/gemfiles/rubocop_0.24.0.gemfile +0 -7
  38. data/gemfiles/rubocop_0.24.0.gemfile.lock +0 -50
  39. data/gemfiles/rubocop_0.25.0.gemfile +0 -7
  40. data/gemfiles/rubocop_0.25.0.gemfile.lock +0 -48
  41. data/gemfiles/rubocop_0.26.1.gemfile +0 -7
  42. data/gemfiles/rubocop_0.26.1.gemfile.lock +0 -51
  43. data/gemfiles/rubocop_0.27.1.gemfile +0 -7
  44. data/gemfiles/rubocop_0.27.1.gemfile.lock +0 -51
  45. data/gemfiles/rubocop_0.28.0.gemfile +0 -7
  46. data/gemfiles/rubocop_0.28.0.gemfile.lock +0 -51
  47. data/gemfiles/rubocop_0.29.1.gemfile +0 -7
  48. data/gemfiles/rubocop_0.29.1.gemfile.lock +0 -49
@@ -1,5 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  require 'rexml/document'
3
+ require 'rubocop/formatter/base_formatter'
3
4
 
4
5
  # XXX: Renamed to RuboCop since 0.23.0
5
6
  RuboCop = Rubocop if defined?(Rubocop) && ! defined?(RuboCop)
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = 'rubocop-checkstyle_formatter'
7
- gem.version = '0.2.0'
7
+ gem.version = '0.3.0'
8
8
  gem.authors = ['Eito Katagiri']
9
9
  gem.email = ['eitoball@gmail.com']
10
10
  gem.description = %q{A formatter for rubocop that outputs in checkstyle format}
@@ -17,9 +17,9 @@ Gem::Specification.new do |gem|
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ['lib']
19
19
 
20
- gem.add_dependency 'rubocop', '>= 0.20.1'
20
+ gem.add_dependency 'rubocop', '>= 0.30.1'
21
21
  gem.add_development_dependency 'appraisal', '~> 1.0.0'
22
22
  gem.add_development_dependency 'bundler', '~> 1.3'
23
23
  gem.add_development_dependency 'rake', '~> 10.1'
24
- gem.add_development_dependency 'rspec', '~> 2.14.0'
24
+ gem.add_development_dependency 'rspec', '~> 3.5.0'
25
25
  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.2.0
4
+ version: 0.3.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: 2015-04-25 00:00:00.000000000 Z
11
+ date: 2016-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.20.1
19
+ version: 0.30.1
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.20.1
26
+ version: 0.30.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: appraisal
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 2.14.0
75
+ version: 3.5.0
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 2.14.0
82
+ version: 3.5.0
83
83
  description: A formatter for rubocop that outputs in checkstyle format
84
84
  email:
85
85
  - eitoball@gmail.com
@@ -94,28 +94,32 @@ files:
94
94
  - LICENSE.txt
95
95
  - README.md
96
96
  - Rakefile
97
- - gemfiles/rubocop_0.20.1.gemfile
98
- - gemfiles/rubocop_0.20.1.gemfile.lock
99
- - gemfiles/rubocop_0.21.0.gemfile
100
- - gemfiles/rubocop_0.21.0.gemfile.lock
101
- - gemfiles/rubocop_0.22.0.gemfile
102
- - gemfiles/rubocop_0.22.0.gemfile.lock
103
- - gemfiles/rubocop_0.23.0.gemfile
104
- - gemfiles/rubocop_0.23.0.gemfile.lock
105
- - gemfiles/rubocop_0.24.0.gemfile
106
- - gemfiles/rubocop_0.24.0.gemfile.lock
107
- - gemfiles/rubocop_0.25.0.gemfile
108
- - gemfiles/rubocop_0.25.0.gemfile.lock
109
- - gemfiles/rubocop_0.26.1.gemfile
110
- - gemfiles/rubocop_0.26.1.gemfile.lock
111
- - gemfiles/rubocop_0.27.1.gemfile
112
- - gemfiles/rubocop_0.27.1.gemfile.lock
113
- - gemfiles/rubocop_0.28.0.gemfile
114
- - gemfiles/rubocop_0.28.0.gemfile.lock
115
- - gemfiles/rubocop_0.29.1.gemfile
116
- - gemfiles/rubocop_0.29.1.gemfile.lock
117
97
  - gemfiles/rubocop_0.30.1.gemfile
118
98
  - gemfiles/rubocop_0.30.1.gemfile.lock
99
+ - gemfiles/rubocop_0.31.0.gemfile
100
+ - gemfiles/rubocop_0.31.0.gemfile.lock
101
+ - gemfiles/rubocop_0.32.1.gemfile
102
+ - gemfiles/rubocop_0.32.1.gemfile.lock
103
+ - gemfiles/rubocop_0.33.0.gemfile
104
+ - gemfiles/rubocop_0.33.0.gemfile.lock
105
+ - gemfiles/rubocop_0.34.2.gemfile
106
+ - gemfiles/rubocop_0.34.2.gemfile.lock
107
+ - gemfiles/rubocop_0.35.1.gemfile
108
+ - gemfiles/rubocop_0.35.1.gemfile.lock
109
+ - gemfiles/rubocop_0.36.0.gemfile
110
+ - gemfiles/rubocop_0.36.0.gemfile.lock
111
+ - gemfiles/rubocop_0.37.2.gemfile
112
+ - gemfiles/rubocop_0.37.2.gemfile.lock
113
+ - gemfiles/rubocop_0.38.0.gemfile
114
+ - gemfiles/rubocop_0.38.0.gemfile.lock
115
+ - gemfiles/rubocop_0.39.0.gemfile
116
+ - gemfiles/rubocop_0.39.0.gemfile.lock
117
+ - gemfiles/rubocop_0.40.0.gemfile
118
+ - gemfiles/rubocop_0.40.0.gemfile.lock
119
+ - gemfiles/rubocop_0.41.2.gemfile
120
+ - gemfiles/rubocop_0.41.2.gemfile.lock
121
+ - gemfiles/rubocop_0.42.0.gemfile
122
+ - gemfiles/rubocop_0.42.0.gemfile.lock
119
123
  - lib/rubocop/formatter/checkstyle_formatter.rb
120
124
  - rubocop-checkstyle_formatter.gemspec
121
125
  - spec/rubocop/formatter/checkstyle_formatter_spec.rb
@@ -140,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
144
  version: '0'
141
145
  requirements: []
142
146
  rubyforge_project:
143
- rubygems_version: 2.4.5
147
+ rubygems_version: 2.5.1
144
148
  signing_key:
145
149
  specification_version: 4
146
150
  summary: A formatter for rubocop that outputs in checkstyle format
@@ -1,50 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- rubocop-checkstyle_formatter (0.2.0)
5
- rubocop (>= 0.20.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (1.0.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.0.0)
15
- diff-lcs (1.2.5)
16
- json (1.8.1)
17
- parser (2.1.9)
18
- ast (>= 1.1, < 3.0)
19
- slop (~> 3.4, >= 3.4.5)
20
- powerpack (0.0.9)
21
- rainbow (2.0.0)
22
- rake (10.3.2)
23
- rspec (2.14.1)
24
- rspec-core (~> 2.14.0)
25
- rspec-expectations (~> 2.14.0)
26
- rspec-mocks (~> 2.14.0)
27
- rspec-core (2.14.8)
28
- rspec-expectations (2.14.5)
29
- diff-lcs (>= 1.1.3, < 2.0)
30
- rspec-mocks (2.14.6)
31
- rubocop (0.20.1)
32
- json (>= 1.7.7, < 2)
33
- parser (~> 2.1.7)
34
- powerpack (~> 0.0.6)
35
- rainbow (>= 1.99.1, < 3.0)
36
- ruby-progressbar (~> 1.4)
37
- ruby-progressbar (1.5.1)
38
- slop (3.5.0)
39
- thor (0.19.1)
40
-
41
- PLATFORMS
42
- ruby
43
-
44
- DEPENDENCIES
45
- appraisal (~> 1.0.0)
46
- bundler (~> 1.3)
47
- rake (~> 10.1)
48
- rspec (~> 2.14.0)
49
- rubocop (= 0.20.1)
50
- rubocop-checkstyle_formatter!
@@ -1,50 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- rubocop-checkstyle_formatter (0.2.0)
5
- rubocop (>= 0.20.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (1.0.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.0.0)
15
- diff-lcs (1.2.5)
16
- json (1.8.1)
17
- parser (2.1.9)
18
- ast (>= 1.1, < 3.0)
19
- slop (~> 3.4, >= 3.4.5)
20
- powerpack (0.0.9)
21
- rainbow (2.0.0)
22
- rake (10.3.2)
23
- rspec (2.14.1)
24
- rspec-core (~> 2.14.0)
25
- rspec-expectations (~> 2.14.0)
26
- rspec-mocks (~> 2.14.0)
27
- rspec-core (2.14.8)
28
- rspec-expectations (2.14.5)
29
- diff-lcs (>= 1.1.3, < 2.0)
30
- rspec-mocks (2.14.6)
31
- rubocop (0.21.0)
32
- json (>= 1.7.7, < 2)
33
- parser (~> 2.1.9)
34
- powerpack (~> 0.0.6)
35
- rainbow (>= 1.99.1, < 3.0)
36
- ruby-progressbar (~> 1.4)
37
- ruby-progressbar (1.5.1)
38
- slop (3.5.0)
39
- thor (0.19.1)
40
-
41
- PLATFORMS
42
- ruby
43
-
44
- DEPENDENCIES
45
- appraisal (~> 1.0.0)
46
- bundler (~> 1.3)
47
- rake (~> 10.1)
48
- rspec (~> 2.14.0)
49
- rubocop (= 0.21.0)
50
- rubocop-checkstyle_formatter!
@@ -1,50 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- rubocop-checkstyle_formatter (0.2.0)
5
- rubocop (>= 0.20.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (1.0.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.0.0)
15
- diff-lcs (1.2.5)
16
- json (1.8.1)
17
- parser (2.1.9)
18
- ast (>= 1.1, < 3.0)
19
- slop (~> 3.4, >= 3.4.5)
20
- powerpack (0.0.9)
21
- rainbow (2.0.0)
22
- rake (10.3.2)
23
- rspec (2.14.1)
24
- rspec-core (~> 2.14.0)
25
- rspec-expectations (~> 2.14.0)
26
- rspec-mocks (~> 2.14.0)
27
- rspec-core (2.14.8)
28
- rspec-expectations (2.14.5)
29
- diff-lcs (>= 1.1.3, < 2.0)
30
- rspec-mocks (2.14.6)
31
- rubocop (0.22.0)
32
- json (>= 1.7.7, < 2)
33
- parser (~> 2.1.9)
34
- powerpack (~> 0.0.6)
35
- rainbow (>= 1.99.1, < 3.0)
36
- ruby-progressbar (~> 1.4)
37
- ruby-progressbar (1.5.1)
38
- slop (3.5.0)
39
- thor (0.19.1)
40
-
41
- PLATFORMS
42
- ruby
43
-
44
- DEPENDENCIES
45
- appraisal (~> 1.0.0)
46
- bundler (~> 1.3)
47
- rake (~> 10.1)
48
- rspec (~> 2.14.0)
49
- rubocop (= 0.22.0)
50
- rubocop-checkstyle_formatter!
@@ -1,50 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- rubocop-checkstyle_formatter (0.2.0)
5
- rubocop (>= 0.20.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (1.0.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.0.0)
15
- diff-lcs (1.2.5)
16
- json (1.8.1)
17
- parser (2.1.9)
18
- ast (>= 1.1, < 3.0)
19
- slop (~> 3.4, >= 3.4.5)
20
- powerpack (0.0.9)
21
- rainbow (2.0.0)
22
- rake (10.3.2)
23
- rspec (2.14.1)
24
- rspec-core (~> 2.14.0)
25
- rspec-expectations (~> 2.14.0)
26
- rspec-mocks (~> 2.14.0)
27
- rspec-core (2.14.8)
28
- rspec-expectations (2.14.5)
29
- diff-lcs (>= 1.1.3, < 2.0)
30
- rspec-mocks (2.14.6)
31
- rubocop (0.23.0)
32
- json (>= 1.7.7, < 2)
33
- parser (~> 2.1.9)
34
- powerpack (~> 0.0.6)
35
- rainbow (>= 1.99.1, < 3.0)
36
- ruby-progressbar (~> 1.4)
37
- ruby-progressbar (1.5.1)
38
- slop (3.5.0)
39
- thor (0.19.1)
40
-
41
- PLATFORMS
42
- ruby
43
-
44
- DEPENDENCIES
45
- appraisal (~> 1.0.0)
46
- bundler (~> 1.3)
47
- rake (~> 10.1)
48
- rspec (~> 2.14.0)
49
- rubocop (= 0.23.0)
50
- rubocop-checkstyle_formatter!
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rubocop", "0.24.0"
6
-
7
- gemspec :path => "../"
@@ -1,50 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- rubocop-checkstyle_formatter (0.2.0)
5
- rubocop (>= 0.20.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (1.0.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.0.0)
15
- diff-lcs (1.2.5)
16
- json (1.8.1)
17
- parser (2.2.0.pre.2)
18
- ast (>= 1.1, < 3.0)
19
- slop (~> 3.4, >= 3.4.5)
20
- powerpack (0.0.9)
21
- rainbow (2.0.0)
22
- rake (10.3.2)
23
- rspec (2.14.1)
24
- rspec-core (~> 2.14.0)
25
- rspec-expectations (~> 2.14.0)
26
- rspec-mocks (~> 2.14.0)
27
- rspec-core (2.14.8)
28
- rspec-expectations (2.14.5)
29
- diff-lcs (>= 1.1.3, < 2.0)
30
- rspec-mocks (2.14.6)
31
- rubocop (0.24.0)
32
- json (>= 1.7.7, < 2)
33
- parser (>= 2.2.0.pre.2, < 3.0)
34
- powerpack (~> 0.0.6)
35
- rainbow (>= 1.99.1, < 3.0)
36
- ruby-progressbar (~> 1.4)
37
- ruby-progressbar (1.5.1)
38
- slop (3.5.0)
39
- thor (0.19.1)
40
-
41
- PLATFORMS
42
- ruby
43
-
44
- DEPENDENCIES
45
- appraisal (~> 1.0.0)
46
- bundler (~> 1.3)
47
- rake (~> 10.1)
48
- rspec (~> 2.14.0)
49
- rubocop (= 0.24.0)
50
- rubocop-checkstyle_formatter!
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rubocop", "0.25.0"
6
-
7
- gemspec :path => "../"
@@ -1,48 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- rubocop-checkstyle_formatter (0.2.0)
5
- rubocop (>= 0.20.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (1.0.2)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.0.0)
15
- diff-lcs (1.2.5)
16
- parser (2.2.0.pre.4)
17
- ast (>= 1.1, < 3.0)
18
- slop (~> 3.4, >= 3.4.5)
19
- powerpack (0.0.9)
20
- rainbow (2.0.0)
21
- rake (10.3.2)
22
- rspec (2.14.1)
23
- rspec-core (~> 2.14.0)
24
- rspec-expectations (~> 2.14.0)
25
- rspec-mocks (~> 2.14.0)
26
- rspec-core (2.14.8)
27
- rspec-expectations (2.14.5)
28
- diff-lcs (>= 1.1.3, < 2.0)
29
- rspec-mocks (2.14.6)
30
- rubocop (0.25.0)
31
- parser (>= 2.2.0.pre.4, < 3.0)
32
- powerpack (~> 0.0.6)
33
- rainbow (>= 1.99.1, < 3.0)
34
- ruby-progressbar (~> 1.4)
35
- ruby-progressbar (1.5.1)
36
- slop (3.6.0)
37
- thor (0.19.1)
38
-
39
- PLATFORMS
40
- ruby
41
-
42
- DEPENDENCIES
43
- appraisal (~> 1.0.0)
44
- bundler (~> 1.3)
45
- rake (~> 10.1)
46
- rspec (~> 2.14.0)
47
- rubocop (= 0.25.0)
48
- rubocop-checkstyle_formatter!