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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8db732cbcfd1540ca1762091006f5699b0f95c7daadf8a61e8d23b829a4f7203
4
- data.tar.gz: fcbf5d87251a00ed68b3185871cc4999813e84bcd57540d5627633075a1658af
3
+ metadata.gz: ae48b7ba8c86fc7e54c30a6717e389c8878a1184cf2475d59b1e459e3267fe55
4
+ data.tar.gz: f748841840157b734cfe23855aa5ed75f40536adc94523d53e94f3b7a3db6018
5
5
  SHA512:
6
- metadata.gz: ca7ea18c1b4aeb7629e5fead3b71688a07cc856d21cfaa6eaac2439ff10b6d2109cc2f2bc22e376122448f652e7c2507619c06f815aabfc65a1e1c52f3db042f
7
- data.tar.gz: 67411b623cfd368c0105409ba63b33d18d4e77ba78cd5248d8b39187774343e39237f780a4ddcee27ed446cdb588f273dc4f99caaf49c3f170b4b7c94e36a024
6
+ metadata.gz: 54b126b759d40b3b5ea71c5e259247964cf4d0a722b6da144ff706d33ed1b5919d1b7db4a9bf160b21b83b0effdf815187cdad910809b84ba836d6fcc2b02d51
7
+ data.tar.gz: 3490226a8aea0711d0a3f4e3ebc48664aa91fa0ac2e97cf64b2b88ceafb0bdc5e53b4334d9ce37e83333e10bdccaf88a900ddab603a5235a95c75a75d4ef8a41
@@ -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),
@@ -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
- UI.important("App Distribution fetched 0 tester UDIDs. Nothing written to output file.")
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]}")
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module FirebaseAppDistribution
3
- VERSION = "0.9.0.pre.2"
3
+ VERSION = "0.9.0.pre.4"
4
4
  end
5
5
  end
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.2
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-01-31 00:00:00.000000000 Z
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