fastlane-plugin-firebase_app_distribution 0.9.0.pre.2 → 0.9.0.pre.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_action.rb +3 -3
- data/lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_get_udids.rb +3 -2
- data/lib/fastlane/plugin/firebase_app_distribution/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: ae48b7ba8c86fc7e54c30a6717e389c8878a1184cf2475d59b1e459e3267fe55
|
4
|
+
data.tar.gz: f748841840157b734cfe23855aa5ed75f40536adc94523d53e94f3b7a3db6018
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54b126b759d40b3b5ea71c5e259247964cf4d0a722b6da144ff706d33ed1b5919d1b7db4a9bf160b21b83b0effdf815187cdad910809b84ba836d6fcc2b02d51
|
7
|
+
data.tar.gz: 3490226a8aea0711d0a3f4e3ebc48664aa91fa0ac2e97cf64b2b88ceafb0bdc5e53b4334d9ce37e83333e10bdccaf88a900ddab603a5235a95c75a75d4ef8a41
|
data/lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_action.rb
CHANGED
@@ -513,12 +513,12 @@ module Fastlane
|
|
513
513
|
# Release Testing
|
514
514
|
FastlaneCore::ConfigItem.new(key: :test_devices,
|
515
515
|
env_name: "FIREBASEAPPDISTRO_TEST_DEVICES",
|
516
|
-
description: "List of devices to run automated tests on, in the format 'model=<model-id>,version=<os-version-id>,locale=<locale>,orientation=<orientation>;model=<model-id>,...'. Run 'gcloud firebase test android|ios models list' to see available devices. Note: This feature is in beta
|
516
|
+
description: "List of devices to run automated tests on, in the format 'model=<model-id>,version=<os-version-id>,locale=<locale>,orientation=<orientation>;model=<model-id>,...'. Run 'gcloud firebase test android|ios models list' to see available devices. Note: This feature is in beta",
|
517
517
|
optional: true,
|
518
518
|
type: String),
|
519
519
|
FastlaneCore::ConfigItem.new(key: :test_devices_file,
|
520
520
|
env_name: "FIREBASEAPPDISTRO_TEST_DEVICES_FILE",
|
521
|
-
description: "Path to file containing a list of devices to run automated tests on, in the format 'model=<model-id>,version=<os-version-id>,locale=<locale>,orientation=<orientation>;model=<model-id>,...'. Run 'gcloud firebase test android|ios models list' to see available devices. Note: This feature is in beta
|
521
|
+
description: "Path to file containing a list of devices to run automated tests on, in the format 'model=<model-id>,version=<os-version-id>,locale=<locale>,orientation=<orientation>;model=<model-id>,...'. Run 'gcloud firebase test android|ios models list' to see available devices. Note: This feature is in beta",
|
522
522
|
optional: true,
|
523
523
|
type: String),
|
524
524
|
FastlaneCore::ConfigItem.new(key: :test_username,
|
@@ -538,7 +538,7 @@ module Fastlane
|
|
538
538
|
optional: true,
|
539
539
|
type: String),
|
540
540
|
FastlaneCore::ConfigItem.new(key: :test_async,
|
541
|
-
description: "Run tests asynchronously. Visit the Firebase console for the automatic test results
|
541
|
+
description: "Run tests asynchronously. Visit the Firebase console for the automatic test results",
|
542
542
|
optional: false,
|
543
543
|
default_value: false,
|
544
544
|
type: Boolean),
|
data/lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_get_udids.rb
CHANGED
@@ -28,8 +28,9 @@ module Fastlane
|
|
28
28
|
end
|
29
29
|
udids = client.get_project_tester_udids(project_name(project_number)).tester_udids
|
30
30
|
|
31
|
-
if udids.empty?
|
32
|
-
|
31
|
+
if udids.to_a.empty?
|
32
|
+
File.delete(params[:output_file]) if File.exist?(params[:output_file])
|
33
|
+
UI.important("App Distribution fetched 0 tester UDIDs. Removed output file.")
|
33
34
|
else
|
34
35
|
write_udids_to_file(udids, params[:output_file])
|
35
36
|
UI.success("🎉 App Distribution tester UDIDs written to: #{params[:output_file]}")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-firebase_app_distribution
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.0.pre.
|
4
|
+
version: 0.9.0.pre.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stefan Natchev
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2024-
|
13
|
+
date: 2024-02-06 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: google-apis-firebaseappdistribution_v1
|