xcov 1.3.3 → 1.3.4
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/lib/xcov/options.rb +11 -0
- data/lib/xcov/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: 6993072ac6d172ceeadfae0efdd42193a63ebabf
|
|
4
|
+
data.tar.gz: 65515556fc68830fa1edbf0d54bf8e4dc8f44868
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae61057fadccce442d61c6b60209608f0aaeeffdfc6dea3bae54f47d87c49ead4f650ca0cb3eb005c9459a132c462e262eda070b267e48116e61705334e3b892
|
|
7
|
+
data.tar.gz: f634da26b3d7d896b30803b2fd3a044a2f928ff8993e01aa60aa3935f6b25742e444eeff088e666306e88d1ab4079c95aac3995ab3fe6e922431e2808faebe19
|
data/lib/xcov/options.rb
CHANGED
|
@@ -210,6 +210,17 @@ module Xcov
|
|
|
210
210
|
conflicting_options: [:coveralls_service_name, :coveralls_service_job_id],
|
|
211
211
|
description: "Repository token to be used by integrations not compatible with Coveralls"
|
|
212
212
|
)
|
|
213
|
+
|
|
214
|
+
# Fastlane compatibility issue fix
|
|
215
|
+
FastlaneCore::ConfigItem.new(
|
|
216
|
+
key: :xcconfig,
|
|
217
|
+
env_name: "XCOV_XCCONFIG",
|
|
218
|
+
description: "Use an extra XCCONFIG file to build your app",
|
|
219
|
+
optional: true,
|
|
220
|
+
verify_block: proc do |value|
|
|
221
|
+
UI.user_error!("File not found at path '#{File.expand_path(value)}'") unless File.exist?(value)
|
|
222
|
+
end
|
|
223
|
+
)
|
|
213
224
|
]
|
|
214
225
|
end
|
|
215
226
|
|
data/lib/xcov/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xcov
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Carlos Vidal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-03-
|
|
11
|
+
date: 2018-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane
|