fastlane-plugin-diawi 2.0.0 → 2.1.0

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
  SHA256:
3
- metadata.gz: beb66e054f5c65c772f26c84c021e5b9342f243e9d4c68b7e081023620f8493b
4
- data.tar.gz: a12c675d601fdc47ec2beb845c8c968a19f3828f5aa6afac8bac9c29cacae48a
3
+ metadata.gz: 2f9692ae827fb1d7c9748fe0c007ae8a5ef9de3ef97316cd9edeeb29cfa6eef4
4
+ data.tar.gz: 524da05c30ed14fd0e5907a5d7efbb42ce7dd4a8bed4eed8bb7a026bd16056e3
5
5
  SHA512:
6
- metadata.gz: 792373c4a13c426947837f2410a304c50a7f5bf832072616c6961d094be6e235a9222dc8a335455a150bcefde03afa1e2246362b60732c477dd6ff7cf3e2ea93
7
- data.tar.gz: cd34ad8b4cb27d5e560812a038d9398dce7861c1997eaad376f4fcd12d798ee449542d93887968c3225ae612bd11d065fd69b6c0e3db39dde07ba18055abb77b
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, 240)
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, 240)
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, 240)",
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),
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Diawi
3
- VERSION = "2.0.0"
3
+ VERSION = "2.1.0"
4
4
  end
5
5
  end
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.0.0
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-02-20 00:00:00.000000000 Z
11
+ date: 2020-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client