fastlane_core 0.36.1 → 0.36.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc5f21c0d1cf5dcb3ad39e52cb5d36189b3b9e98
|
4
|
+
data.tar.gz: dd3f467588eb9c1a0b18ae5088954ab0ad3b8505
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ee998e51f16ed51bba58d75c39448623cefd56a125a11b9325ca915fd0ef3aa914f63bc5d6f3bdd0ebecec86470fa0902bd8f38152c5b59d6757f14ef277177
|
7
|
+
data.tar.gz: 22beb8ab47ecd168522eb7d92d38e4baaf00d8afbdb88e146fab816428fbd3016844f87836ba81750e642e32920e3ce16fdb7645c11e5f5935515af16166de37
|
@@ -92,9 +92,9 @@ module FastlaneCore
|
|
92
92
|
else
|
93
93
|
# Special treatment if the user specififed true, false or YES, NO
|
94
94
|
# There is no boolean typoe, so we just do it here
|
95
|
-
if %w(YES yes true).include?(value)
|
95
|
+
if %w(YES yes true TRUE).include?(value)
|
96
96
|
return true
|
97
|
-
elsif %w(NO no false).include?(value)
|
97
|
+
elsif %w(NO no false FALSE).include?(value)
|
98
98
|
return false
|
99
99
|
end
|
100
100
|
end
|
data/lib/fastlane_core/helper.rb
CHANGED
@@ -46,7 +46,7 @@ module FastlaneCore
|
|
46
46
|
def download(app_id, dir = nil)
|
47
47
|
dir ||= "/tmp"
|
48
48
|
|
49
|
-
Helper.log.info "Going to download app metadata from
|
49
|
+
Helper.log.info "Going to download app metadata from iTunes Connect"
|
50
50
|
command = build_download_command(@user, @password, app_id, dir)
|
51
51
|
Helper.log.debug build_download_command(@user, 'YourPassword', app_id, dir) if $verbose
|
52
52
|
|
@@ -54,7 +54,7 @@ module FastlaneCore
|
|
54
54
|
|
55
55
|
itmsp_path = File.join(dir, "#{app_id}.itmsp")
|
56
56
|
if result and File.directory? itmsp_path
|
57
|
-
Helper.log.info "Successfully downloaded the latest package from
|
57
|
+
Helper.log.info "Successfully downloaded the latest package from iTunes Connect.".green
|
58
58
|
else
|
59
59
|
handle_error(@password)
|
60
60
|
end
|
@@ -62,7 +62,7 @@ module FastlaneCore
|
|
62
62
|
result
|
63
63
|
end
|
64
64
|
|
65
|
-
# Uploads the modified package back to
|
65
|
+
# Uploads the modified package back to iTunes Connect
|
66
66
|
# @param app_id [Integer] The unique App ID
|
67
67
|
# @param dir [String] the path in which the package file is located
|
68
68
|
# @return (Bool) True if everything worked fine
|
@@ -71,7 +71,7 @@ module FastlaneCore
|
|
71
71
|
def upload(app_id, dir)
|
72
72
|
dir = File.join(dir, "#{app_id}.itmsp")
|
73
73
|
|
74
|
-
Helper.log.info "Going to upload updated app to
|
74
|
+
Helper.log.info "Going to upload updated app to iTunes Connect"
|
75
75
|
Helper.log.info "This might take a few minutes, please don't interrupt the script".green
|
76
76
|
|
77
77
|
command = build_upload_command(@user, @password, dir)
|
@@ -81,7 +81,7 @@ module FastlaneCore
|
|
81
81
|
|
82
82
|
if result
|
83
83
|
Helper.log.info(("-" * 102).green)
|
84
|
-
Helper.log.info("Successfully uploaded package to
|
84
|
+
Helper.log.info("Successfully uploaded package to iTunes Connect. It might take a few minutes until it's visible online.".green)
|
85
85
|
Helper.log.info(("-" * 102).green)
|
86
86
|
|
87
87
|
FileUtils.rm_rf(dir) unless Helper.is_test? # we don't need the package any more, since the upload was successful
|
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.36.
|
4
|
+
version: 0.36.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-
|
11
|
+
date: 2016-02-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -384,7 +384,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
384
384
|
version: '0'
|
385
385
|
requirements: []
|
386
386
|
rubyforge_project:
|
387
|
-
rubygems_version: 2.4.
|
387
|
+
rubygems_version: 2.4.0
|
388
388
|
signing_key:
|
389
389
|
specification_version: 4
|
390
390
|
summary: Contains all shared code/dependencies of the fastlane.tools
|