fastlane_core 0.6.1 → 0.6.2
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/fastlane_core/configuration.rb +4 -0
- 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: c4274cb73b0a4400e607d9c4c8b1e94e69a99adb
|
4
|
+
data.tar.gz: f9c06cce97bf4be150da4435677e7612fd6212a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2e984504d303945dbd86607a6b40134e8eda2c8cc7dc9ec63aa4bcafd483cce0b6f4dbf692e9e594af9a8e33450647e2bf1aedb055d8ffe0a707b6a6b7a381f
|
7
|
+
data.tar.gz: d02ee6fda91a1570d3f16823b1268bc32d846c80ed4caf8f58115b366b532e3d87214717ba956ea262ca15791379bc8619f1a02c23e61950a793a30d6a74d8f5
|
@@ -10,6 +10,10 @@ module FastlaneCore
|
|
10
10
|
# Setting up
|
11
11
|
|
12
12
|
def values
|
13
|
+
# As the user accesses all values, we need to iterate through them to receive all the values
|
14
|
+
@available_options.each do |option|
|
15
|
+
@values[option.key] = fetch(option.key) unless @values[option.key]
|
16
|
+
end
|
13
17
|
@values
|
14
18
|
end
|
15
19
|
|