fastlane-plugin-saucelabs_appdist 0.3.1 → 0.3.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dee4f0403f875e1dbd4992e580e9514848176b9d635991b23c57b7be9fbd7b8d
|
|
4
|
+
data.tar.gz: 7533e47446b5aa2847c95c5b1c8bbd0bde64143ea2e1067bf30b8a06c7526304
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86b1bff8f762f6d83a1ca1e81d53e91449625ab5efd9ee5ff930a57e5382a2fca2411210256b71f92dbd6381982e5f1e74aeeb87cb25305fe1867f6622885ea0
|
|
7
|
+
data.tar.gz: a111d54819ab04693be15b23342d243c0dbbf2cc8ded10c0e83882650bf65649d2bbb7f2b12407867409ded82ffab9a8f3eadfdca25a33c053e49d44386ba683
|
data/README.md
CHANGED
|
@@ -51,6 +51,8 @@ saucelabs_appdist(
|
|
|
51
51
|
| `landing_page_mode` | Landing page visibility (`open`/`closed`) | `open` |
|
|
52
52
|
| `upload_to_saucelabs` | Upload to Sauce Labs (`on`/`off`) | `off` |
|
|
53
53
|
| `platform` | Platform override | `""` |
|
|
54
|
+
| `community_token` | Custom URL token for the landing page | `""` |
|
|
55
|
+
| `app_description` | Description text to display on the landing page | `""` |
|
|
54
56
|
|
|
55
57
|
## Response
|
|
56
58
|
|
|
@@ -104,6 +104,10 @@ module Fastlane
|
|
|
104
104
|
[key, value]
|
|
105
105
|
when :platform
|
|
106
106
|
[key, value]
|
|
107
|
+
when :community_token
|
|
108
|
+
[key, value]
|
|
109
|
+
when :app_description
|
|
110
|
+
[key, value]
|
|
107
111
|
else
|
|
108
112
|
UI.user_error!("Unknown parameter: #{key}")
|
|
109
113
|
end
|
|
@@ -264,6 +268,16 @@ module Fastlane
|
|
|
264
268
|
optional: true,
|
|
265
269
|
env_name: "FL_SAUCELABS_APPDIST_PLATFORM",
|
|
266
270
|
description: "Use if upload build is not iOS or Android. Contact support for more information",
|
|
271
|
+
default_value: ''),
|
|
272
|
+
FastlaneCore::ConfigItem.new(key: :community_token,
|
|
273
|
+
optional: true,
|
|
274
|
+
env_name: "FL_SAUCELABS_APPDIST_COMMUNITY_TOKEN",
|
|
275
|
+
description: "Custom URL token for the landing page",
|
|
276
|
+
default_value: ''),
|
|
277
|
+
FastlaneCore::ConfigItem.new(key: :app_description,
|
|
278
|
+
optional: true,
|
|
279
|
+
env_name: "FL_SAUCELABS_APPDIST_APP_DESCRIPTION",
|
|
280
|
+
description: "Description text to display on the landing page",
|
|
267
281
|
default_value: '')
|
|
268
282
|
]
|
|
269
283
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-saucelabs_appdist
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sauce Labs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-03-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
158
|
version: '0'
|
|
159
159
|
requirements: []
|
|
160
|
-
rubygems_version: 3.
|
|
160
|
+
rubygems_version: 3.5.3
|
|
161
161
|
signing_key:
|
|
162
162
|
specification_version: 4
|
|
163
163
|
summary: Sauce Labs plugin for uploading builds to Mobile App Distribution
|