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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 46008f19afec35b2dd7b91606ecd4b103443153a
4
- data.tar.gz: 67ef2cc2f473ab9b9027f61c21272c615d38c64e
3
+ metadata.gz: cf3182aa10452ce9b6e44d5f315eea2846f13ac8
4
+ data.tar.gz: 32b1bb1c5036bad7e5ec4227398795c829390e92
5
5
  SHA512:
6
- metadata.gz: 50490e1c4b3a034e4afacfc578b83a394ee2836d82c89a2c8c1c74a42607ed330e0813c727307991195455b3e5c5b7361007d5607e2cff2fe8c9fdd638f7922b
7
- data.tar.gz: c1486fbd7fa984a74a7c9e2e3853fa5ea5958ae13e760b04287bea1c54043be308995214a7983eba7ab6c0809a1ddbf55b770775e9981466c299be430313b47a
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
- v.delete(:verbose) # as this is being processed by commander
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
 
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.21.1"
2
+ VERSION = "0.22.1"
3
3
  end
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.21.1
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-13 00:00:00.000000000 Z
11
+ date: 2015-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json