fastlane-plugin-diawi 2.0.0 → 2.1.0
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 +1 -1
- data/lib/fastlane/plugin/diawi/actions/diawi_action.rb +2 -2
- data/lib/fastlane/plugin/diawi/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2f9692ae827fb1d7c9748fe0c007ae8a5ef9de3ef97316cd9edeeb29cfa6eef4
|
|
4
|
+
data.tar.gz: 524da05c30ed14fd0e5907a5d7efbb42ce7dd4a8bed4eed8bb7a026bd16056e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fae36f74faa89471ce20870b2b026d106adbe699137780676b0d5bc5e0b2079f4db452d8e098a10ab63272d6f148f5e2f0b702f5feb01bec37626af7e254a42f
|
|
7
|
+
data.tar.gz: 1bbcb659cec9d284a35a52c7409e7fbda05d7ef10f2718326c377c50ca8f502ac815deb2504eba7a8ffda93660f8201b678b5ada07fd0811a66e81dcc8a49635
|
data/README.md
CHANGED
|
@@ -38,7 +38,7 @@ Key | Required | Type | Description
|
|
|
38
38
|
**callback_url** | `false` | `String` | The URL diawi should call with the result
|
|
39
39
|
**callback_emails** | `false` | `String` | The email addresses diawi will send the result to (up to 5 separated by commas for starter/premium/enterprise accounts, 1 for free accounts). Emails should be a string. Ex: "example@test.com,example1@test.com"
|
|
40
40
|
**installation_notifications** | `false` | `Boolean` | Receive notifications each time someone installs the app (only starter/premium/enterprise accounts)
|
|
41
|
-
**timeout** | `false` | `Int` | Timeout for checking upload status in seconds.<br>**Default**: 60<br>**Range**: (5,
|
|
41
|
+
**timeout** | `false` | `Int` | Timeout for checking upload status in seconds.<br>**Default**: 60<br>**Range**: (5, 1800)
|
|
42
42
|
**check_status_delay** | `false` | `Int` | Number of seconds to wait between repeated attempts at checking upload status.<br>**Default**: 3<br>**Range**: (1, 30)
|
|
43
43
|
|
|
44
44
|
## Result link
|
|
@@ -58,7 +58,7 @@ module Fastlane
|
|
|
58
58
|
job = JSON.parse(response.body)['job']
|
|
59
59
|
|
|
60
60
|
if job
|
|
61
|
-
timeout = options[:timeout].clamp(5,
|
|
61
|
+
timeout = options[:timeout].clamp(5, 1800)
|
|
62
62
|
check_status_delay = options[:check_status_delay].clamp(1, 30)
|
|
63
63
|
|
|
64
64
|
if check_status_delay > timeout
|
|
@@ -180,7 +180,7 @@ module Fastlane
|
|
|
180
180
|
optional: true),
|
|
181
181
|
FastlaneCore::ConfigItem.new(key: :timeout,
|
|
182
182
|
env_name: "DIAWI_TIMEOUT",
|
|
183
|
-
description: "Timeout for checking upload status in seconds. Default: 60, range: (5,
|
|
183
|
+
description: "Timeout for checking upload status in seconds. Default: 60, range: (5, 1800)",
|
|
184
184
|
is_string: false,
|
|
185
185
|
optional: true,
|
|
186
186
|
default_value: 60),
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-diawi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- pacification
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|