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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3c52031f45193afb5191f3d85b07ea64cc10d0fd
4
- data.tar.gz: 6fe6b2d143dc535848b9bf8c6bfddbca76b20eec
3
+ metadata.gz: 6993072ac6d172ceeadfae0efdd42193a63ebabf
4
+ data.tar.gz: 65515556fc68830fa1edbf0d54bf8e4dc8f44868
5
5
  SHA512:
6
- metadata.gz: 265c6efa019449d2a76051ca7aa3d0b56021ce2f7fc8e3b49c32ab614a0c9cb91466d2820ea541536461ff42a1bef76070a58b91397a4653f0db896c32d2597e
7
- data.tar.gz: cac538b019a3f6131123b18d0dab6a67bb90734a1be0a43aa048ba98710fcb4cac164f7a584d4bca02149b2fa1403bcc706471dc53322c8bfd964afc7e9bae46
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
@@ -1,6 +1,6 @@
1
1
  module Xcov
2
2
 
3
- VERSION = "1.3.3"
3
+ VERSION = "1.3.4"
4
4
  DESCRIPTION = "xcov is a friendly visualizer for Xcode's code coverage files"
5
5
 
6
6
  end
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.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-08 00:00:00.000000000 Z
11
+ date: 2018-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane