fastlane-plugin-match_android 0.3.1 → 0.3.3
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: 8a940d3851fd0c4a1a1569d3d80a981e5f0e3f50da9cfe4d6e36daea4c05c624
|
4
|
+
data.tar.gz: 541435e0ac2ced433a347bd9a3448827bade3d0abfdfc810d55b31ef37853750
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb6621a514ffdf6367e82ae370df7afd6d477f597bdd9d099d0ab801d1b38b162e15a1ac545d6d68dd01877f87d1b5c9d843d5746b49d46c4bd48887de65bda7
|
7
|
+
data.tar.gz: '0587a4c49804bc8f1914b9323cb628b313e762a9d3a0a8ff087ad5cf3285faf8c731b53730e0e3b1c86a37cb544c9c1c6a33eb11e8a8b43899e75065335ba49c'
|
@@ -101,15 +101,15 @@ module Fastlane
|
|
101
101
|
UI.message("SSL/TLS protocol library: '#{output.strip!}'")
|
102
102
|
|
103
103
|
# Check minimum verion:
|
104
|
-
|
105
|
-
UI.message("SSL/TLS protocol version: '#{
|
104
|
+
version = output.to_str.scan(/[0-9\.]{1,}/).first
|
105
|
+
UI.message("SSL/TLS protocol version: '#{version}'")
|
106
106
|
if self.is_libre_ssl(forceOpenSSL)
|
107
|
-
if Gem::Version.new(
|
108
|
-
raise "Minimum version for LibreSSL is '#{libressl_min}', please update it.
|
107
|
+
if Gem::Version.new(version) < Gem::Version.new(libressl_min)
|
108
|
+
raise "Minimum version for LibreSSL is '#{libressl_min}' (you're on '#{version}'), please update it."
|
109
109
|
end
|
110
110
|
else
|
111
|
-
if Gem::Version.new(
|
112
|
-
raise "Minimum version for OpenSSL is '#{openssl_min}'
|
111
|
+
if Gem::Version.new(version) < Gem::Version.new(openssl_min)
|
112
|
+
raise "Minimum version for OpenSSL is '#{openssl_min}' (you're on '#{version}'), please update it."
|
113
113
|
end
|
114
114
|
end
|
115
115
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-match_android
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maikel Stuivenberg
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|