fastlane-plugin-pgyer 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: 4aab71c4ccfbd932cce469d005c061664e6ca70b45969513fb811ded4c668562
|
4
|
+
data.tar.gz: 20c05f3049146a01bf0913df72d85289df1f2a1d4753bfdd6447a4a73a68ee2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f6df6193af437a950c61ba737e19bee1282b71c0bc2fb8fabfb151c6928bf44ca6d34acf668e4d64a342704aa74f7dce76f0f2d0f60d81c4061473854e3d541
|
7
|
+
data.tar.gz: f678c0607a076a3df8ba0315316fa0bf8278a4a3b109e1fb448a6298f5b50c4c33a7bb8c9549a01553331cd12c6841748f67dcaf8ac4b13277c26769503eeb3d
|
@@ -167,17 +167,6 @@ module Fastlane
|
|
167
167
|
conflict_block: proc do |value|
|
168
168
|
UI.user_error!("You can't use 'apk' and '#{value.key}' options in one run")
|
169
169
|
end),
|
170
|
-
FastlaneCore::ConfigItem.new(key: :hap,
|
171
|
-
env_name: "PGYER_HAP",
|
172
|
-
description: "Path to your HAP file",
|
173
|
-
optional: true,
|
174
|
-
verify_block: proc do |value|
|
175
|
-
UI.user_error!("Couldn't find hap file at path '#{value}'") unless File.exist?(value)
|
176
|
-
end,
|
177
|
-
conflicting_options: [:ipa, :apk],
|
178
|
-
conflict_block: proc do |value|
|
179
|
-
UI.user_error!("You can't use 'hap' and '#{value.key}' options in one run")
|
180
|
-
end),
|
181
170
|
FastlaneCore::ConfigItem.new(key: :ipa,
|
182
171
|
env_name: "PGYER_IPA",
|
183
172
|
description: "Path to your IPA file. Optional if you use the _gym_ or _xcodebuild_ action. For Mac zip the .app. For Android provide path to .apk file",
|