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: 7d8f6fe6e998ad8fe3bfbed02f20d40482db037aa56968323951fec29ac4fa7e
4
- data.tar.gz: fb345db9cc3bf3a6fb0c7574c194dfe4c0afb328427b51148402508a2308f40b
3
+ metadata.gz: 262d0cd0903ab5803410d08f3448d4bbadc828f2be7d44cd0a10156bf1895089
4
+ data.tar.gz: d28f9dd55c5dd3a8cd568870fb28c85e5c0540d072a64bb1111e548a54d747cc
5
5
  SHA512:
6
- metadata.gz: 70329968c42bbf7584a8637bf4e2b001d73739466de3e3325922199e2c2d71f47968360128a5f940d07eebf7358c98bb021036a5d5760ffcf731d86028b6e998
7
- data.tar.gz: d791f7807856078c4d587315bcfb6d661268cbe0dce38ef4b02c044350cc8d161a75eb3c1d80fcea0cea829826a8ba1410c241fab2a253f716913568064f8c41
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
- errors = validate_ipa(
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module ValidateIpa
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-validate_ipa
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - hacoma