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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26d39ce9978be6553334d8cf4213bb844d5df8ff
4
- data.tar.gz: bd80eed52b439ac6c7ce8792137df2256f9c1579
3
+ metadata.gz: 4159006b340c635d1d3eee49239db32a6c4da1cd
4
+ data.tar.gz: 4166e741e399b1fc503902f7f1145cd3462d142e
5
5
  SHA512:
6
- metadata.gz: 0ab0dc29557bce345a43f887ec2f3eae3738c86b7cd95055ad49b28b3147e9b9a3a795e7eddce6c9ebf7e821cda4afd3d32072930b7077641e8b87b418751402
7
- data.tar.gz: 043b377c7cca9211f3dbfe3c2178f0fb07cff105f91bfc4237c3972aadf1ef57ab17f9541996ea362588361109d06ad45ed623af691634c5282ab6395eea5103
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> &bull;
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/gym">gym</a> &bull;
20
- <a href="https://github.com/fastlane/scan">scan</a>
20
+ <a href="https://github.com/fastlane/scan">scan</a> &bull;
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.verify_block.call(item.default_value)
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
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.29.0"
2
+ VERSION = "0.29.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.0
4
+ version: 0.29.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause