deliver 1.13.1 → 1.13.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/README.md +4 -4
- data/lib/deliver/html_generator.rb +1 -1
- data/lib/deliver/options.rb +12 -2
- data/lib/deliver/upload_metadata.rb +1 -2
- data/lib/deliver/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 76ec28b9855115a33bb1020b293807287a8ceebb
|
|
4
|
+
data.tar.gz: 74438ce41d66d70c8af587fae63143e052be95ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae372b3440d0d757e085acb6e5628871cd7d8f5d068bd09c6b52a95fa12647f44accbaf438727d68afa68c2bdfaef3e521d4d7b3a113698be4e61a5cdedb814b
|
|
7
|
+
data.tar.gz: 2abd51f2f0fe4ee3797e6074350c478617912ab5cde514e51f0c7bb8daa1f26969c618017bcd4f91512d71ee3a99bb9c2fe2c71f566ebb81b478ef01ce70a119
|
data/README.md
CHANGED
|
@@ -36,7 +36,7 @@ deliver
|
|
|
36
36
|
|
|
37
37
|
###### Upload screenshots, metadata and your app to the App Store using a single command
|
|
38
38
|
|
|
39
|
-
`deliver`
|
|
39
|
+
`deliver` uploads screenshots, metadata and binaries to iTunes Connect. Use `'deliver` to submit your app for App Store review.
|
|
40
40
|
|
|
41
41
|
Get in contact with the developer on Twitter: [@FastlaneTools](https://twitter.com/FastlaneTools)
|
|
42
42
|
|
|
@@ -110,7 +110,7 @@ Provide the path to an `ipa` file to upload and submit your app for review:
|
|
|
110
110
|
deliver --ipa "App.ipa" --submit_for_review
|
|
111
111
|
```
|
|
112
112
|
|
|
113
|
-
or you can specify path to `pkg` file for
|
|
113
|
+
or you can specify path to `pkg` file for macOS apps:
|
|
114
114
|
|
|
115
115
|
```
|
|
116
116
|
deliver --pkg "MacApp.pkg"
|
|
@@ -149,7 +149,7 @@ A detailed description about how your credentials are handled is available in a
|
|
|
149
149
|
|
|
150
150
|
### How does this thing even work? Is magic involved? 🎩###
|
|
151
151
|
|
|
152
|
-
Your password will be stored in the
|
|
152
|
+
Your password will be stored in the macOS keychain, but can also be passed using environment variables. (More information available on [CredentialsManager](https://github.com/fastlane/fastlane/tree/master/credentials_manager))
|
|
153
153
|
|
|
154
154
|
Before actually uploading anything to iTunes, ```deliver``` will generate a HTML summary of the collected data.
|
|
155
155
|
|
|
@@ -244,7 +244,7 @@ DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS="-t DAV" deliver
|
|
|
244
244
|
```
|
|
245
245
|
|
|
246
246
|
## HTTP Proxy
|
|
247
|
-
iTunes Transporter is a Java application bundled with Xcode. In
|
|
247
|
+
iTunes Transporter is a Java application bundled with Xcode. In addition to utilizing the `DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS="-t DAV"`, you need to configure the transporter application to use the proxy independently from the system proxy or any environment proxy settings. You can find the configuration file within Xcode:
|
|
248
248
|
|
|
249
249
|
```bash
|
|
250
250
|
TOOLS_PATH=$( xcode-select -p )
|
|
@@ -24,7 +24,7 @@ module Deliver
|
|
|
24
24
|
if okay
|
|
25
25
|
UI.success("HTML file confirmed...") # print this to give feedback to the user immediately
|
|
26
26
|
else
|
|
27
|
-
UI.user_error!("Did not upload the metadata, because the HTML file was rejected by the user")
|
|
27
|
+
UI.user_error!("Did not upload the metadata, because the HTML file was rejected by the user", show_github_issues: false)
|
|
28
28
|
end
|
|
29
29
|
end
|
|
30
30
|
|
data/lib/deliver/options.rb
CHANGED
|
@@ -78,7 +78,7 @@ module Deliver
|
|
|
78
78
|
default_value: false),
|
|
79
79
|
FastlaneCore::ConfigItem.new(key: :force,
|
|
80
80
|
short_option: "-f",
|
|
81
|
-
description: "Skip the HTML file verification",
|
|
81
|
+
description: "Skip the HTML report file verification",
|
|
82
82
|
is_string: false,
|
|
83
83
|
default_value: false),
|
|
84
84
|
FastlaneCore::ConfigItem.new(key: :submit_for_review,
|
|
@@ -213,7 +213,17 @@ module Deliver
|
|
|
213
213
|
FastlaneCore::ConfigItem.new(key: :keywords,
|
|
214
214
|
description: "Metadata: An array of localised keywords",
|
|
215
215
|
optional: true,
|
|
216
|
-
is_string: false
|
|
216
|
+
is_string: false,
|
|
217
|
+
verify_block: proc do |value|
|
|
218
|
+
UI.user_error!(":keywords must be a Hash, with the language being the key") unless value.kind_of?(Hash)
|
|
219
|
+
value.each do |language, keywords|
|
|
220
|
+
# Auto-convert array to string
|
|
221
|
+
keywords = keywords.join(", ") if keywords.kind_of?(Array)
|
|
222
|
+
value[language] = keywords
|
|
223
|
+
|
|
224
|
+
UI.user_error!(":keywords must be a hash with all values being strings") unless keywords.kind_of?(String)
|
|
225
|
+
end
|
|
226
|
+
end),
|
|
217
227
|
FastlaneCore::ConfigItem.new(key: :release_notes,
|
|
218
228
|
description: "Metadata: Localised release notes for this version",
|
|
219
229
|
optional: true,
|
|
@@ -13,8 +13,7 @@ module Deliver
|
|
|
13
13
|
# Non localized app details values
|
|
14
14
|
NON_LOCALISED_APP_VALUES = [:primary_category, :secondary_category,
|
|
15
15
|
:primary_first_sub_category, :primary_second_sub_category,
|
|
16
|
-
:secondary_first_sub_category, :secondary_second_sub_category
|
|
17
|
-
]
|
|
16
|
+
:secondary_first_sub_category, :secondary_second_sub_category]
|
|
18
17
|
|
|
19
18
|
# Make sure to call `load_from_filesystem` before calling upload
|
|
20
19
|
def upload(options)
|
data/lib/deliver/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: deliver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.13.
|
|
4
|
+
version: 1.13.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-08-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.49.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 1.0.0
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.49.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 1.0.0
|
|
@@ -56,7 +56,7 @@ dependencies:
|
|
|
56
56
|
requirements:
|
|
57
57
|
- - ">="
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
|
-
version: 0.
|
|
59
|
+
version: 0.30.0
|
|
60
60
|
- - "<"
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
62
|
version: 1.0.0
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: 0.
|
|
69
|
+
version: 0.30.0
|
|
70
70
|
- - "<"
|
|
71
71
|
- !ruby/object:Gem::Version
|
|
72
72
|
version: 1.0.0
|
|
@@ -304,7 +304,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
304
304
|
version: '0'
|
|
305
305
|
requirements: []
|
|
306
306
|
rubyforge_project:
|
|
307
|
-
rubygems_version: 2.
|
|
307
|
+
rubygems_version: 2.5.1
|
|
308
308
|
signing_key:
|
|
309
309
|
specification_version: 4
|
|
310
310
|
summary: Upload screenshots, metadata and your app to the App Store using a single
|