fastlane-plugin-browserstack 0.3.2 → 0.3.3
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: 02b08722f9335fc078a5617af4cf858c6a4d39c3288f39b1bbdc16174c5eb23e
|
|
4
|
+
data.tar.gz: e823a0737ab4dc521214aba96cfbb1b1fde441b76337ba913222f8deb19c0f31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a392e780b3fef996572051cf746072fd4763e422142671ac4b5cad330c161c08625ed16cdc7b790a26fa25f1f164ba81030ca86db96b498a263027a395bf1183
|
|
7
|
+
data.tar.gz: d106335e6ba0c5377b4087cf3fe02d1726bba575b60f9d67da229291407024d7456a6af08470bfaef3125cafc96301435e77fb461777c1f049c90cc9e4d330f9
|
|
@@ -69,8 +69,15 @@ module Fastlane
|
|
|
69
69
|
# Shared value for ipa path if it was generated by gym https://docs.fastlane.tools/actions/gym/.
|
|
70
70
|
return Actions.lane_context[Actions::SharedValues::IPA_OUTPUT_PATH]
|
|
71
71
|
else
|
|
72
|
-
# Shared value for apk if it was generated by gradle.
|
|
73
|
-
|
|
72
|
+
# Shared value for apk/aab if it was generated by gradle.
|
|
73
|
+
apk_path = Actions.lane_context[Actions::SharedValues::GRADLE_APK_OUTPUT_PATH]
|
|
74
|
+
aab_path = Actions.lane_context[Actions::SharedValues::GRADLE_AAB_OUTPUT_PATH]
|
|
75
|
+
|
|
76
|
+
if !apk_path.nil?
|
|
77
|
+
return apk_path
|
|
78
|
+
else
|
|
79
|
+
return aab_path
|
|
80
|
+
end
|
|
74
81
|
end
|
|
75
82
|
end
|
|
76
83
|
|
|
@@ -68,8 +68,15 @@ module Fastlane
|
|
|
68
68
|
# Shared value for ipa path if it was generated by gym https://docs.fastlane.tools/actions/gym/.
|
|
69
69
|
return Actions.lane_context[Actions::SharedValues::IPA_OUTPUT_PATH]
|
|
70
70
|
else
|
|
71
|
-
# Shared value for apk if it was generated by gradle.
|
|
72
|
-
|
|
71
|
+
# Shared value for apk/aab if it was generated by gradle.
|
|
72
|
+
apk_path = Actions.lane_context[Actions::SharedValues::GRADLE_APK_OUTPUT_PATH]
|
|
73
|
+
aab_path = Actions.lane_context[Actions::SharedValues::GRADLE_AAB_OUTPUT_PATH]
|
|
74
|
+
|
|
75
|
+
if !apk_path.nil?
|
|
76
|
+
return apk_path
|
|
77
|
+
else
|
|
78
|
+
return aab_path
|
|
79
|
+
end
|
|
73
80
|
end
|
|
74
81
|
end
|
|
75
82
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-browserstack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- BrowserStack
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-07-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -156,7 +156,7 @@ dependencies:
|
|
|
156
156
|
- - ">="
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
158
|
version: 2.96.1
|
|
159
|
-
description:
|
|
159
|
+
description:
|
|
160
160
|
email: support@browserstack.com
|
|
161
161
|
executables: []
|
|
162
162
|
extensions: []
|
|
@@ -173,7 +173,7 @@ homepage: https://github.com/browserstack/browserstack-fastlane-plugin
|
|
|
173
173
|
licenses:
|
|
174
174
|
- MIT
|
|
175
175
|
metadata: {}
|
|
176
|
-
post_install_message:
|
|
176
|
+
post_install_message:
|
|
177
177
|
rdoc_options: []
|
|
178
178
|
require_paths:
|
|
179
179
|
- lib
|
|
@@ -188,9 +188,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
188
188
|
- !ruby/object:Gem::Version
|
|
189
189
|
version: '0'
|
|
190
190
|
requirements: []
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
signing_key:
|
|
191
|
+
rubygems_version: 3.4.10
|
|
192
|
+
signing_key:
|
|
194
193
|
specification_version: 4
|
|
195
194
|
summary: Uploads IPA and APK files to BrowserStack for automation and manual testing.
|
|
196
195
|
test_files: []
|