simplecov-cobertura 1.2.0 → 1.3.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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTEzZGFiNGNhYjhkYjAyNDBiNWZhNTc2NGNhMTIyZWRjNGRhZmE2Mg==
4
+ MWRiNGU3MTc0OTUwZTAwMzQxZGFmMmU3NDZjZDRhM2Y5MGQ5MjA5OQ==
5
5
  data.tar.gz: !binary |-
6
- YmU3ZWJkMTQ3YmQ3ZjI4MzIzYWIzYTNmYmI5YjJmZjM5NjU1ZjFkNg==
6
+ ZThkN2Q5NDZjZDgyZTcxMWIxZTk1MDQ5OThiYmIxOWNlODFkMjVkMw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZDVmNjdkZGYxMDNjMTRkNzk1MWEyNmJjMDY5YjY5ZTdjZTliYzBiOGEyODZm
10
- ZjlkNDQwNmUzOTY5NmE4NWIwMDU4YjA0MDg5M2ZmZjUxNDQ2NWVhZjUxMjVh
11
- Mjc2MDhjMDkxZjMzNDA4YjZmNTZjN2M5NWQzMjdkYjkyM2ZhOWQ=
9
+ YTAzODVlY2RmNThhNjlkMGRhYmY2NGZhZWEzNDU3M2UyOWMzMWVlODkxYWM2
10
+ ZGZmY2RkNDcxZjEyMTY0ZGJlYjUxNTIzZjIyNzRiOGFhMzMyNWQ3ZmNiM2Jk
11
+ MzEyMmU4YTgxYTE5ZmIzOTg0MGIxYTJkM2RiZDg2YmI2ZTQ0NzM=
12
12
  data.tar.gz: !binary |-
13
- NjU4ODZjMjlhMTI0MGVjOTZlZTc0M2Q4NjUwZDVlYTE0MzA4ZmNiNWI4OTFl
14
- ZmVlOWJlYTViMjg3ODk3MWZlODg3ZjllZjI0ZTY2NDIxOWUzMDRmNTllOTcz
15
- MzY1MWIwZjNhMmUxNjQ5YzE3MmQzNTljZjllNmEzODRhZTAwODU=
13
+ ZWZmNDliN2M1MDQ2MzgyM2NmM2Y2OGRhZDNhODM0NGFiMTg2NjhlMmQ4OTJm
14
+ MmRmNjRjNzgzZTZkMmM3NmNmNDYyYzI5MTZhY2QzM2QyYjM5ZGVlMzg1YWNi
15
+ YTQ2YmE2ODMyMjExN2E5MjkxZmU0YzI1NGM2YmY4YTUzNzE0YjA=
data/README.md CHANGED
@@ -32,8 +32,9 @@ SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter
32
32
 
33
33
  ## Continuous Integration
34
34
  Tested in a CI environment against the following Ruby versions:
35
- * 2.3.1
36
- * 2.2.5
35
+ * 2.4.2
36
+ * 2.3.5
37
+ * 2.2.8
37
38
  * 2.1.10
38
39
  * 1.9.3
39
40
  * JRuby (1.9 mode)
@@ -46,6 +47,8 @@ Tested in a CI environment against the following Ruby versions:
46
47
  * Sean Clemmer
47
48
  * Ivailo Petrov
48
49
  * Rob Lester
50
+ * Denis <Zaratan> Pasin
51
+ * Jesper Rønn-Jensen
49
52
 
50
53
  ## Contributing
51
54
 
@@ -56,7 +59,7 @@ Tested in a CI environment against the following Ruby versions:
56
59
  5. Create a new Pull Request
57
60
 
58
61
  ## License
59
- Copyright 2016 Dashing Rocket, Ltd.
62
+ Copyright 2017 Dashing Rocket, Ltd.
60
63
 
61
64
  Licensed under the Apache License, Version 2.0 (the "License");
62
65
  you may not use this file except in compliance with the License.
@@ -4,7 +4,7 @@ require 'rexml/element'
4
4
  module SimpleCov
5
5
  module Formatter
6
6
  class CoberturaFormatter
7
- VERSION = '1.2.0'
7
+ VERSION = '1.3.0'
8
8
 
9
9
  RESULT_FILE_NAME = 'coverage.xml'
10
10
  DTD_URL = 'http://cobertura.sourceforge.net/xml/coverage-04.dtd'
@@ -1,8 +1,9 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 2.3.1
5
- - 2.2.5
4
+ - 2.4.2
5
+ - 2.3.5
6
+ - 2.2.8
6
7
  - 2.1.10
7
8
  - 1.9.3
8
9
  - jruby-19mode
@@ -23,8 +23,7 @@ Gem::Specification.new do |spec|
23
23
  spec.add_development_dependency 'bundler', '~> 1.7'
24
24
  spec.add_development_dependency 'rake', '~> 10.0'
25
25
  spec.add_development_dependency 'ci_reporter_test_unit', '~> 1.0'
26
- spec.add_development_dependency 'nokogiri', '~> 1.6'
26
+ spec.add_development_dependency 'nokogiri', '< 1.7'
27
27
 
28
28
  spec.add_dependency 'simplecov', '~> 0.8'
29
- spec.add_dependency 'json', '~> 1.8'
30
29
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplecov-cobertura
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jesse Bowes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-05 00:00:00.000000000 Z
11
+ date: 2017-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -56,16 +56,16 @@ dependencies:
56
56
  name: nokogiri
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - <
60
60
  - !ruby/object:Gem::Version
61
- version: '1.6'
61
+ version: '1.7'
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: '1.6'
68
+ version: '1.7'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: simplecov
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -80,20 +80,6 @@ dependencies:
80
80
  - - ~>
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0.8'
83
- - !ruby/object:Gem::Dependency
84
- name: json
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - ~>
88
- - !ruby/object:Gem::Version
89
- version: '1.8'
90
- type: :runtime
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - ~>
95
- - !ruby/object:Gem::Version
96
- version: '1.8'
97
83
  description: Produces Cobertura XML formatted output from SimpleCov
98
84
  email:
99
85
  - jbowes@dashingrocket.com
@@ -130,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
116
  version: '0'
131
117
  requirements: []
132
118
  rubyforge_project:
133
- rubygems_version: 2.4.6
119
+ rubygems_version: 2.6.12
134
120
  signing_key:
135
121
  specification_version: 4
136
122
  summary: SimpleCov Cobertura Formatter