fastlane-plugin-android_testlab_script_swit 0.1.43 → 0.1.45

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: accad07356a2a4ce5f5754a8af92d0e3d9ca5241dba83ef31096966209999a53
4
- data.tar.gz: f789da5dc407e420297125c402e5a1f157771c7eba934659dd4d3697be4fc484
3
+ metadata.gz: 81d7996e79452432390736401158fece4c297ba569c8b1b2c6e4c44519ec8802
4
+ data.tar.gz: 7e7502a8ca31ad5fa22f7cf3f85fc4e5bd363671a3f8f9e57f5e24d055328fd6
5
5
  SHA512:
6
- metadata.gz: 55397edd26d7fe67fecef2bbc1b90b2f9b6011251e426ddd50ee551bac30470df497caa4bafe31d73c0b2d95b81652fb0ff6e6ffb072f107def870a69c69ed17
7
- data.tar.gz: f11e82a7f47f6f5089cc6e2267b08f9f4f13e473749f02d9ae091e3f3402e385dde7601c63fe4fc0f3a0b659ae7261f9689f34696df76e58fa56e26efa05fc5f
6
+ metadata.gz: ef23212bfe942b32cdfb0a9113abe9d8b87e596b26fd14d5dbf8bf95c997ca1d7bae78004e1819bac5a88a634cae50394abd43661afcfd43452c0549f4c964e9
7
+ data.tar.gz: 2dace34f2399fe1150faf148861cf11d74c631bc5c4fb5db23b5dab7c7d0ac120db6eca188f7fc40ca5d4aaef6865f5965b8856fcdce99fff973d6583473c951
@@ -182,14 +182,9 @@ module Fastlane
182
182
  FastlaneCore::ConfigItem.new(key: :gcloud_components_channel,
183
183
  env_name: "gcloud_components_channel",
184
184
  description: "If you use beta or alpha components. Default stable (alpha/beta)",
185
- is_string: true,
185
+ type: String",
186
186
  optional: true,
187
- default_value: "stable",
188
- verify_block: proc do |value|
189
- if value != "stable" && value != "alpha" && value != "beta"
190
- UI.user_error!("Unknown gcloud component channel.")
191
- end
192
- end),
187
+ default_value: "stable"),
193
188
 
194
189
  # console_log_file_name (false)
195
190
  FastlaneCore::ConfigItem.new(key: :console_log_file_name,
@@ -32,7 +32,7 @@ module Fastlane
32
32
  Action.sh("gcloud auth activate-service-account --key-file #{gcloud_key_file}")
33
33
  end
34
34
 
35
- def self.run_tests(arguments)
35
+ def self.run_tests(gcloud_components_channel, arguments)
36
36
  UI.message("Test running...")
37
37
  Action.sh("set +e; gcloud#{' ' + gcloud_components_channel unless gcloud_components_channel == "stable"} firebase test android run #{arguments}; set -e")
38
38
  # Action.sh("set +e; gcloud #{gcloud_components_channel unless gcloud_components_channel == "stable"} firebase test android run #{arguments}; set -e")
@@ -142,4 +142,4 @@ module Fastlane
142
142
  return prefix, comment
143
143
  end
144
144
  end
145
- end
145
+ end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AndroidTestlabScriptSwit
3
- VERSION = "0.1.43"
3
+ VERSION = "0.1.45"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-android_testlab_script_swit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.43
4
+ version: 0.1.45
5
5
  platform: ruby
6
6
  authors:
7
7
  - 나비이쁜이