fastlane-plugin-match_android 0.3.0 → 0.3.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: 66277ef14e66cbc4cea74cedb366a8019ec833e14df5af23c21b8f7f3efac2a8
4
- data.tar.gz: e198c0e6ba944f9c5842d555d74aec3381142e769a60d186d9ac8ccc9f7fe30a
3
+ metadata.gz: 1596166a8dacaf72945ae94bf11e0ee891961ae395f3beafa1add808c87fa3c5
4
+ data.tar.gz: 541f51554fb80a801e78fa0b2a208e337d717e2918b8293252f910e91b0c38cc
5
5
  SHA512:
6
- metadata.gz: 5e0c62027cb77a4d2ee6157f9d64df00bc83b065702c5e63ba2cfade38c6acb8410832b765ae0a7889419bf909fa8ef10b3052e5591b04d3a401a586283a8199
7
- data.tar.gz: 3832c3e472f5af3d20abf9fb211ffff686718d9d650fe4e83a5c6519cdaeb7ca1a7b7e640c9883f48b7543de5014aca7f62c84863544bd2d2b8885a34bb83fb4
6
+ metadata.gz: 1442fe9430cda8c415f343bff33b2fcf1a5ecae87a493d9985fb0165a0a7c059088f91638413d7e74962a0c531e67f2c84c6bd360d5d1d93ad6a119464cd70cc
7
+ data.tar.gz: 22f90bfd02b5736c31ef83ce2b580b8b74f653af98997eabc0d5fa30111872c1e4e2f74337a2a841191980dd587da97a3c089ce387e2ca77f592fdfddbbf0211
@@ -14,7 +14,7 @@ module Fastlane
14
14
  MATCH_ANDROID_AAB_SIGNED = :MATCH_ANDROID_AAB_SIGNED
15
15
  end
16
16
 
17
- class MatchKeystoreAction < Action
17
+ class MatchAndroidAction < Action
18
18
 
19
19
  KEY_VERSION = "2"
20
20
  OPENSSL_BIN_PATH_MAC = "/usr/local/opt/openssl@1.1/bin"
@@ -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)
107
+ if Gem::Version.new(version) < Gem::Version.new(libressl_min)
108
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"
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. Use homebrew is your are Mac user, and update ~/.bash_profile or ~/.zprofile"
113
113
  end
114
114
  end
115
115
 
@@ -4,9 +4,9 @@ module Fastlane
4
4
  UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
5
5
 
6
6
  module Helper
7
- class MatchKeystoreHelper
7
+ class MatchAndroidHelper
8
8
  # class methods that you define here become available in your action
9
- # as `Helper::MatchKeystoreHelper.your_method`
9
+ # as `Helper::MatchAndroidHelper.your_method`
10
10
  #
11
11
  def self.show_message
12
12
  UI.message("Hello from the match_android plugin helper!")
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- module MatchKeystore
3
- VERSION = "0.3.0"
2
+ module MatchAndroid
3
+ VERSION = "0.3.2"
4
4
  end
5
5
  end
@@ -1,7 +1,7 @@
1
1
  require 'fastlane/plugin/match_android/version'
2
2
 
3
3
  module Fastlane
4
- module MatchKeystore
4
+ module MatchAndroid
5
5
  # Return all .rb files inside the "actions" and "helper" directory
6
6
  def self.all_classes
7
7
  Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
@@ -11,6 +11,6 @@ end
11
11
 
12
12
  # By default we want to import all available actions and helpers
13
13
  # A plugin can contain any number of actions and plugins
14
- Fastlane::MatchKeystore.all_classes.each do |current|
14
+ Fastlane::MatchAndroid.all_classes.each do |current|
15
15
  require current
16
16
  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.0
4
+ version: 0.3.2
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