fastlane-plugin-validate_ipa 1.0.1 → 1.0.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: 262d0cd0903ab5803410d08f3448d4bbadc828f2be7d44cd0a10156bf1895089
|
4
|
+
data.tar.gz: d28f9dd55c5dd3a8cd568870fb28c85e5c0540d072a64bb1111e548a54d747cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6387ebb35df3f42e81e974a93989cf3998f5db1ffd61face342f8a354f330d540eb44027679e60f53f6d9eebbd3c5721576b6d3c79d1aa84dfa7ab5df9c7742
|
7
|
+
data.tar.gz: 1acd07d3f5e78090b8fef951d5969038324485c0ea40ed3206f1000e69b1e93c9901c99ea4e4bca7e5ea27dd03c271752ca148ad3c94c00baae8d10e2ae1cca7
|
data/README.md
CHANGED
@@ -20,16 +20,12 @@ Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plu
|
|
20
20
|
|
21
21
|
```ruby
|
22
22
|
lane :test do
|
23
|
-
|
23
|
+
validate_ipa(
|
24
24
|
path: "result/test.ipa",
|
25
25
|
platform: "ios",
|
26
26
|
username: "username",
|
27
27
|
password: "password"
|
28
28
|
)
|
29
|
-
|
30
|
-
if errors.nil?
|
31
|
-
upload_to_appstore
|
32
|
-
end
|
33
29
|
end
|
34
30
|
```
|
35
31
|
|
@@ -37,19 +37,19 @@ module Fastlane
|
|
37
37
|
UI.user_error!("IPA validation failure.")
|
38
38
|
end
|
39
39
|
end
|
40
|
-
|
40
|
+
|
41
41
|
def self.description
|
42
42
|
"Validate the IPA using altool."
|
43
43
|
end
|
44
|
-
|
44
|
+
|
45
45
|
def self.authors
|
46
46
|
["hacoma"]
|
47
47
|
end
|
48
|
-
|
48
|
+
|
49
49
|
def self.available_options
|
50
50
|
[
|
51
51
|
FastlaneCore::ConfigItem.new(
|
52
|
-
key: :path,
|
52
|
+
key: :path,
|
53
53
|
env_name: "FL_VALIDATE_IPA_PATH",
|
54
54
|
description: "IPA Path",
|
55
55
|
is_string: true,
|
@@ -84,7 +84,7 @@ module Fastlane
|
|
84
84
|
end)
|
85
85
|
]
|
86
86
|
end
|
87
|
-
|
87
|
+
|
88
88
|
def self.is_supported?(platform)
|
89
89
|
[:ios, :mac].include?(platform)
|
90
90
|
end
|