fastlane_core 0.21.1 → 0.22.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/lib/fastlane_core/configuration/configuration.rb +8 -1
- data/lib/fastlane_core/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: cf3182aa10452ce9b6e44d5f315eea2846f13ac8
|
4
|
+
data.tar.gz: 32b1bb1c5036bad7e5ec4227398795c829390e92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b1d06fe51e03165916ece791e9bae657078f2cb55152d32cdbc9d1dada069d7310ee80479a6ab3febc2ff7f549b6e0d24073313357ed12873c14d82f810a1ad
|
7
|
+
data.tar.gz: c5a7141e92887c46b065be1f5832f876179b155a2a1fc87ddb588bed7fc6bb43f4b5aa64704e79b56672940f5007add806d9d4d58b8b6a409fa3541f47af00d3
|
@@ -16,7 +16,14 @@ module FastlaneCore
|
|
16
16
|
|
17
17
|
def self.create(available_options, values)
|
18
18
|
v = values.dup
|
19
|
-
|
19
|
+
|
20
|
+
if v.kind_of?(Hash) && available_options.kind_of?(Array) # we only want to deal with the new configuration system
|
21
|
+
# Now see if --verbose would be a valid input
|
22
|
+
# If not, it might be because it's an action and not a tool
|
23
|
+
unless available_options.find { |a| a.kind_of?(ConfigItem) && a.key == :verbose }
|
24
|
+
v.delete(:verbose) # as this is being processed by commander
|
25
|
+
end
|
26
|
+
end
|
20
27
|
Configuration.new(available_options, v)
|
21
28
|
end
|
22
29
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|