slather 2.4.1 → 2.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/slather/coverage_service/coveralls.rb +1 -1
- data/lib/slather/project.rb +2 -2
- data/lib/slather/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 468a58d0b18f5ae7633a796c72205f80d4db2eb8
|
4
|
+
data.tar.gz: 4f4ee9f3346d2849a29e7a654be2e42354209320
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67a07567cfcd9b80606b67b2e40ce3c0f96679f556bf8919bbbbd6d6ccd099d33ad1bab5d624307ee55c4cf3cc80fd9006fef1227998e7d04d9ed593c5b79b90
|
7
|
+
data.tar.gz: 1bd3e902f18d8bee77087615a9806da2359ea235a86fcae23e70c5900ee1ae0ed47ed72789756e9ebd78286589abb5be0f25a26eac1557b083054218799587d8
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,16 @@
|
|
2
2
|
|
3
3
|
## master
|
4
4
|
|
5
|
+
## v2.4.2
|
6
|
+
|
7
|
+
* Restored support for Xcode 7
|
8
|
+
[ButkiewiczP](https://github.com/ButkiewiczP)
|
9
|
+
[#304](https://github.com/slatherOrg/slather/pull/308)
|
10
|
+
|
11
|
+
* Added Jenkins Pipeline support for Coveralls
|
12
|
+
[daneov](https://github.com/daneov)
|
13
|
+
[#304](https://github.com/slatherOrg/slather/pull/304)
|
14
|
+
|
5
15
|
## v2.4.1
|
6
16
|
|
7
17
|
* Add `--configuration` option
|
data/lib/slather/project.rb
CHANGED
@@ -56,7 +56,7 @@ module Slather
|
|
56
56
|
end
|
57
57
|
|
58
58
|
def failure_help_string
|
59
|
-
"\n\tAre you sure your project is generating coverage? Make sure you enable code coverage in the Test section of your Xcode scheme.\n\tDid you specify your Xcode scheme? (--scheme or 'scheme' in .slather.yml)\n\tIf you're using a workspace, did you specify it? (--workspace or 'workspace' in .slather.yml)"
|
59
|
+
"\n\tAre you sure your project is generating coverage? Make sure you enable code coverage in the Test section of your Xcode scheme.\n\tDid you specify your Xcode scheme? (--scheme or 'scheme' in .slather.yml)\n\tIf you're using a workspace, did you specify it? (--workspace or 'workspace' in .slather.yml)\n\tIf you use a different Xcode configuration, did you specify it? (--configuration or 'configuration' in .slather.yml)"
|
60
60
|
end
|
61
61
|
|
62
62
|
def derived_data_path
|
@@ -236,7 +236,7 @@ module Slather
|
|
236
236
|
configure_binary_file
|
237
237
|
configure_decimals
|
238
238
|
|
239
|
-
self.llvm_version = `xcrun llvm-cov --version`.match(/
|
239
|
+
self.llvm_version = `xcrun llvm-cov --version`.match(/LLVM version ([\d\.]+)/).captures[0]
|
240
240
|
rescue => e
|
241
241
|
puts e.message
|
242
242
|
puts failure_help_string
|
data/lib/slather/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slather
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Larsen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|