fastlane_core 0.41.1 → 0.41.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/itunes_transporter.rb +6 -3
- data/lib/fastlane_core/print_table.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: fc7a618468b31d828fe31bccc19aba85306c5c17
|
4
|
+
data.tar.gz: 9e3a24d90de9e34ed39cbfc822f5562a7f974357
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ad82711a64a3bddd7737e0c04724e4a22cdcbce13d192804efe52dce48016f068ff3a188bb4a0f2a649f4db60d9dfc64ce9dba818c3567ecee5c9541ac218f3
|
7
|
+
data.tar.gz: 75f974ac1727bb8c7c778f6f350f4f5e79ffe2e80fa13931991267072284549f7659a5f9929fd19b9f67400057f45f5f73d4c1725e9f9073aef0bd17d10f5441
|
@@ -227,13 +227,16 @@ module FastlaneCore
|
|
227
227
|
# Returns a new instance of the iTunesTransporter.
|
228
228
|
# If no username or password given, it will be taken from
|
229
229
|
# the #{CredentialsManager::AccountManager}
|
230
|
-
|
231
|
-
|
230
|
+
# @param use_shell_script if true, forces use of the iTMSTransporter shell script.
|
231
|
+
# if false, allows a direct call to the iTMSTransporter Java app (preferred).
|
232
|
+
# see: https://github.com/fastlane/fastlane/pull/4003
|
233
|
+
def initialize(user = nil, password = nil, use_shell_script = false)
|
234
|
+
use_shell_script ||= !ENV['FASTLANE_ITUNES_TRANSPORTER_USE_SHELL_SCRIPT'].nil?
|
232
235
|
data = CredentialsManager::AccountManager.new(user: user, password: password)
|
233
236
|
|
234
237
|
@user = data.user
|
235
238
|
@password = data.password
|
236
|
-
@transporter_executor =
|
239
|
+
@transporter_executor = use_shell_script ? ShellScriptTransporterExecutor.new : JavaTransporterExecutor.new
|
237
240
|
end
|
238
241
|
|
239
242
|
# Downloads the latest version of the app metadata package from iTC.
|
@@ -7,7 +7,14 @@ module FastlaneCore
|
|
7
7
|
def print_values(config: nil, title: nil, hide_keys: [], mask_keys: [])
|
8
8
|
require 'terminal-table'
|
9
9
|
|
10
|
-
options =
|
10
|
+
options = {}
|
11
|
+
unless config.nil?
|
12
|
+
if config.kind_of?(FastlaneCore::Configuration)
|
13
|
+
options = config.values(ask: false)
|
14
|
+
else
|
15
|
+
options = config
|
16
|
+
end
|
17
|
+
end
|
11
18
|
rows = self.collect_rows(options: options, hide_keys: hide_keys.map(&:to_s), mask_keys: mask_keys.map(&:to_s), prefix: '')
|
12
19
|
|
13
20
|
params = {}
|
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.41.
|
4
|
+
version: 0.41.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|