pronto-simplecov 0.1.1 → 0.10.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 +4 -4
- data/CHANGELOG.md +12 -1
- data/lib/pronto/pronto_simplecov/runner.rb +1 -1
- data/lib/pronto/pronto_simplecov/version.rb +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99911c62a4dc22d6947af21f5be919e2795bf51cb64ec4e65c2168925a3b7d37
|
|
4
|
+
data.tar.gz: f7d78982716a2f4194386a2f183e2e025a86ab1e8c6b1ff387072d85a1d86127
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 664bcb40791414eee28b07ce56f0209bf831a95484c73e107603af287b329de149a18cb65e4fc9e6ce4f54dbfa94c3e496973ec08b71618516eb48abdec27fa3
|
|
7
|
+
data.tar.gz: 333b8feddba291642291bfe4ef1e7e7720937bb0c3f5fc603975b4ca4b84867f6ed11818ece3fae9900e01bfacc3c656043c4819b3f1dbcb5b1bfb9aa760f169
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@ All notable changes to this project will be documented in this file.
|
|
|
10
10
|
|
|
11
11
|
### Fixed
|
|
12
12
|
|
|
13
|
+
## [0.10.0] - 2019-08-25
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- Support for Pronto 0.10 and mirror their versioning
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Dropped support for Ruby 2.2
|
|
22
|
+
|
|
13
23
|
## [0.1.1] - 2018-08-17
|
|
14
24
|
|
|
15
25
|
### Fixed
|
|
@@ -20,6 +30,7 @@ All notable changes to this project will be documented in this file.
|
|
|
20
30
|
|
|
21
31
|
- First release
|
|
22
32
|
|
|
23
|
-
[Unreleased]: https://github.com/dsander/pronto-simplecov/compare/v0.
|
|
33
|
+
[Unreleased]: https://github.com/dsander/pronto-simplecov/compare/v0.10.0...HEAD
|
|
34
|
+
[0.10.0]: https://github.com/dsander/pronto-simplecov/compare/v0.1.1...v0.10.0
|
|
24
35
|
[0.1.1]: https://github.com/dsander/pronto-simplecov/compare/v0.1.0...v0.1.1
|
|
25
36
|
[0.1.0]: https://github.com/dsander/pronto-simplecov/compare/e020a804f16c5df8f1d45d1f921955928a669dd6...v0.1.0
|
|
@@ -12,7 +12,7 @@ module Pronto
|
|
|
12
12
|
file_coverage = coverage[patch.new_file_full_path.to_s]
|
|
13
13
|
return unless file_coverage
|
|
14
14
|
patch.added_lines
|
|
15
|
-
|
|
15
|
+
.select { |line| file_coverage.line(line.new_lineno)&.missed? }
|
|
16
16
|
.map { |line| message(line) }
|
|
17
17
|
end
|
|
18
18
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pronto-simplecov
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dominik Sander
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pronto
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.10.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.
|
|
26
|
+
version: 0.10.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: simplecov
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -137,8 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
138
|
version: '0'
|
|
139
139
|
requirements: []
|
|
140
|
-
|
|
141
|
-
rubygems_version: 2.7.6
|
|
140
|
+
rubygems_version: 3.0.1
|
|
142
141
|
signing_key:
|
|
143
142
|
specification_version: 4
|
|
144
143
|
summary: Pronto runner for Simplecov, reports changed lines without coverage.
|