fastlane-plugin-json_auth 1.2.3 → 1.2.4
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: f6469b9dfb73efec55fb738b52e312b328e7ce75bc7d1b46c8cc014e224416ef
|
|
4
|
+
data.tar.gz: 85b9216604000b2db974d569b6036427221842cbae7ec4eda0debf0fcb250a93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b523bc16b1470bc7e04ea82a5623f314800192d227c233fe7a0d434717654aaf9f07539567fc4f7e2b7ffeb3c992d5b924b6c72488c67d1bcb5ce3c5afd439c7
|
|
7
|
+
data.tar.gz: 628e664acaf12cc72fcd4588237ff65ff1e59857df06269a8a2ca1a399dd877d5c09651df13c1ff623ba92cad65778c7efb34e658e3ec78ba0cdb04f5cdefd36
|
|
@@ -59,6 +59,16 @@ module Fastlane
|
|
|
59
59
|
verify_block: proc do |value|
|
|
60
60
|
UI.user_error!("You must set json_url pointing to a json file") unless value && !value.empty?
|
|
61
61
|
end),
|
|
62
|
+
FastlaneCore::ConfigItem.new(key: :username,
|
|
63
|
+
description: "Basic auth username to download",
|
|
64
|
+
optional: true,
|
|
65
|
+
is_string: true,
|
|
66
|
+
default_value: nil),
|
|
67
|
+
FastlaneCore::ConfigItem.new(key: :password,
|
|
68
|
+
description: "Basic auth password to download",
|
|
69
|
+
optional: true,
|
|
70
|
+
is_string: true,
|
|
71
|
+
default_value: nil),
|
|
62
72
|
FastlaneCore::ConfigItem.new(key: :verbose,
|
|
63
73
|
description: "verbose",
|
|
64
74
|
optional: true,
|
|
@@ -80,7 +90,7 @@ module Fastlane
|
|
|
80
90
|
end
|
|
81
91
|
|
|
82
92
|
def self.authors
|
|
83
|
-
["Martin Gonzalez"]
|
|
93
|
+
["Martin Gonzalez", "Thang Nguyen"]
|
|
84
94
|
end
|
|
85
95
|
|
|
86
96
|
def self.is_supported?(_platform)
|