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: cb3467bad34c31b1b22dd7092b9cf7a8181eba20e7888585d89f2849564ecedc
4
- data.tar.gz: f15259619f27ae33390afe6dbe48afa13fc80b815692526c3d0469034c76c41a
3
+ metadata.gz: 8a940d3851fd0c4a1a1569d3d80a981e5f0e3f50da9cfe4d6e36daea4c05c624
4
+ data.tar.gz: 541435e0ac2ced433a347bd9a3448827bade3d0abfdfc810d55b31ef37853750
5
5
  SHA512:
6
- metadata.gz: b131c9ad6a715e29924593e6d726904776e1fb9ab3feb1d1449b591f243a76ace57f0b3606d1b4ccde0aa344a15b3cb1b413a1962b0f167c8d6f35951aa9ba9a
7
- data.tar.gz: b39e9f1fae01ea0a6fbbacc7cdd2a812a4b81eca39a5847b8b4ca051f5fe95211dca2d034473fd1e27e9c350d31513601c179653899877cb618eb9ae73411933
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
- vesion = output.to_str.scan(/[0-9\.]{1,}/).first
105
- UI.message("SSL/TLS protocol version: '#{vesion}'")
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(vesion) < Gem::Version.new(libressl_min)
108
- raise "Minimum version for LibreSSL is '#{libressl_min}', please update it. Use homebrew is your are Mac user, and update ~/.bash_profile or ~/.zprofile"
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(vesion) > Gem::Version.new(openssl_min)
112
- raise "Minimum version for OpenSSL is '#{openssl_min}' please update it. Use homebrew is your are Mac user, and update ~/.bash_profile or ~/.zprofile"
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
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module MatchAndroid
3
- VERSION = "0.3.1"
3
+ VERSION = "0.3.3"
4
4
  end
5
5
  end
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.1
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-29 00:00:00.000000000 Z
11
+ date: 2024-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry