fastlane_core 0.29.0 → 0.29.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/README.md +2 -1
- data/lib/fastlane_core/configuration/configuration.rb +3 -1
- data/lib/fastlane_core/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4159006b340c635d1d3eee49239db32a6c4da1cd
|
|
4
|
+
data.tar.gz: 4166e741e399b1fc503902f7f1145cd3462d142e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2aa321316da4eb336f78f1f6ef7912f958591c1b81afe0a2747fd4444ce8911e91e2afd91ec91c3cbdc9968d0a6278ccb57bd1b970a62baa9a5cc0287c5c700
|
|
7
|
+
data.tar.gz: 956b0c49699f9fd0b056fe094c6fcf04e7cc0dc4d57f30623f3f1a3d9d5f0ff6c2cd1c3eacd89787d4826ebecaecb4174b691b75e9d81ab653c51f14e0f8f702
|
data/README.md
CHANGED
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
<a href="https://github.com/fastlane/pilot">pilot</a> •
|
|
18
18
|
<a href="https://github.com/fastlane/boarding">boarding</a> •
|
|
19
19
|
<a href="https://github.com/fastlane/gym">gym</a> •
|
|
20
|
-
<a href="https://github.com/fastlane/scan">scan</a>
|
|
20
|
+
<a href="https://github.com/fastlane/scan">scan</a> •
|
|
21
|
+
<a href="https://github.com/fastlane/match">match</a>
|
|
21
22
|
</p>
|
|
22
23
|
-------
|
|
23
24
|
|
|
@@ -82,7 +82,9 @@ module FastlaneCore
|
|
|
82
82
|
next unless item.verify_block && item.default_value
|
|
83
83
|
|
|
84
84
|
begin
|
|
85
|
-
item.
|
|
85
|
+
unless @values[item.key] # this is important to not verify if there already is a value there
|
|
86
|
+
item.verify_block.call(item.default_value)
|
|
87
|
+
end
|
|
86
88
|
rescue => ex
|
|
87
89
|
Helper.log.fatal ex
|
|
88
90
|
raise "Invalid default value for #{item.key}, doesn't match verify_block".red
|