simplecov 0.11.0 → 0.11.1
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 +4 -4
- data/CHANGELOG.md +10 -1
- data/lib/simplecov/formatter/multi_formatter.rb +1 -1
- data/lib/simplecov/version.rb +1 -1
- data/spec/multi_formatter_spec.rb +20 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4af948b77b779812e38aae3eaa154f6a280c910
|
4
|
+
data.tar.gz: 80705587d23aeabb4a70eeb6a6e1ec0d1a8b7163
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86e09f20723efd9b0cd2574b6bc0191c5f7f0483a4bd50d0d7d3b77d227239bda9db764e53b3254c7497a95ab052810786895f0fbb1ea1892bfaf505a56254aa
|
7
|
+
data.tar.gz: 1e2286d2c6bb0c683315b6ef74f80262a90610b58fde1465b6a21511075f37554a6ca17a0fa4219fed196da673d67685c85fa9441b91edd2cd6a4a258fa078fd
|
data/CHANGELOG.md
CHANGED
@@ -5,7 +5,16 @@ Unreleased ([changes](https://github.com/colszowka/simplecov/compare/v0.11.0...m
|
|
5
5
|
|
6
6
|
## Bugfixes
|
7
7
|
|
8
|
-
0.11.
|
8
|
+
0.11.1 2015-12-01 ([changes](https://github.com/colszowka/simplecov/compare/v0.11.0...v0.11.1))
|
9
|
+
=================
|
10
|
+
|
11
|
+
## Enhancements
|
12
|
+
|
13
|
+
## Bugfixes
|
14
|
+
|
15
|
+
* Fixed regression in `MultiFormatter.[]` with multiple arguments. See [#431](https://github.com/colszowka/simplecov/pull/431) (thanks @dillondrobena)
|
16
|
+
|
17
|
+
0.11.0 2015-11-29 ([changes](https://github.com/colszowka/simplecov/compare/v0.10.0...v0.11.0))
|
9
18
|
=================
|
10
19
|
|
11
20
|
## Enhancements
|
data/lib/simplecov/version.rb
CHANGED
@@ -0,0 +1,20 @@
|
|
1
|
+
require "helper"
|
2
|
+
|
3
|
+
require "simplecov/formatter/multi_formatter"
|
4
|
+
|
5
|
+
describe SimpleCov::Formatter::MultiFormatter do
|
6
|
+
describe ".[]" do
|
7
|
+
# Regression test for https://github.com/colszowka/simplecov/issues/428
|
8
|
+
it "constructs a formatter with multiple children" do
|
9
|
+
# Silence deprecation warnings.
|
10
|
+
allow(described_class).to receive(:warn)
|
11
|
+
|
12
|
+
children = [
|
13
|
+
SimpleCov::Formatter::SimpleFormatter,
|
14
|
+
SimpleCov::Formatter::SimpleFormatter,
|
15
|
+
]
|
16
|
+
|
17
|
+
expect(described_class[*children].new.formatters).to eq(children)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simplecov
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.11.
|
4
|
+
version: 0.11.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christoph Olszowka
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -184,6 +184,7 @@ files:
|
|
184
184
|
- spec/fixtures/utf-8.rb
|
185
185
|
- spec/helper.rb
|
186
186
|
- spec/merge_helpers_spec.rb
|
187
|
+
- spec/multi_formatter_spec.rb
|
187
188
|
- spec/result_spec.rb
|
188
189
|
- spec/return_codes_spec.rb
|
189
190
|
- spec/source_file_line_spec.rb
|
@@ -287,6 +288,7 @@ test_files:
|
|
287
288
|
- spec/fixtures/utf-8.rb
|
288
289
|
- spec/helper.rb
|
289
290
|
- spec/merge_helpers_spec.rb
|
291
|
+
- spec/multi_formatter_spec.rb
|
290
292
|
- spec/result_spec.rb
|
291
293
|
- spec/return_codes_spec.rb
|
292
294
|
- spec/source_file_line_spec.rb
|