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: f9ec531bfe4c5ec6744d4c50c329c767134e1a8910343cd214ecba49f9b6466e
4
- data.tar.gz: af1b1716c2675b67d2a3219889e5979f3d90916fe0e702ebb847ab61cfaa6626
3
+ metadata.gz: f6469b9dfb73efec55fb738b52e312b328e7ce75bc7d1b46c8cc014e224416ef
4
+ data.tar.gz: 85b9216604000b2db974d569b6036427221842cbae7ec4eda0debf0fcb250a93
5
5
  SHA512:
6
- metadata.gz: bbc8bb700c5ca5ee21abb59b1abcf05c4a522aa4ecddae00125e271c706152561d08b3cb8f2592efcd73f67ec9ac3b5d17a3d85320163b5acbbd6fe8456917d0
7
- data.tar.gz: 9b98aea9ed49131d78d9cd0070e0018acc6d0da42deada92d69acb6259ab6f5364868d73e37985d8aaacc23eb80d9fc3d1e037a598b0faebde228fa9182685ec
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)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module JsonAuth
3
- VERSION = "1.2.3"
3
+ VERSION = "1.2.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-json_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Gonzalez