fastlane-plugin-match_android 0.3.0 → 0.3.1

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: cb3467bad34c31b1b22dd7092b9cf7a8181eba20e7888585d89f2849564ecedc
4
+ data.tar.gz: f15259619f27ae33390afe6dbe48afa13fc80b815692526c3d0469034c76c41a
5
5
  SHA512:
6
- metadata.gz: 5e0c62027cb77a4d2ee6157f9d64df00bc83b065702c5e63ba2cfade38c6acb8410832b765ae0a7889419bf909fa8ef10b3052e5591b04d3a401a586283a8199
7
- data.tar.gz: 3832c3e472f5af3d20abf9fb211ffff686718d9d650fe4e83a5c6519cdaeb7ca1a7b7e640c9883f48b7543de5014aca7f62c84863544bd2d2b8885a34bb83fb4
6
+ metadata.gz: b131c9ad6a715e29924593e6d726904776e1fb9ab3feb1d1449b591f243a76ace57f0b3606d1b4ccde0aa344a15b3cb1b413a1962b0f167c8d6f35951aa9ba9a
7
+ data.tar.gz: b39e9f1fae01ea0a6fbbacc7cdd2a812a4b81eca39a5847b8b4ca051f5fe95211dca2d034473fd1e27e9c350d31513601c179653899877cb618eb9ae73411933
@@ -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"
@@ -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.1"
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,7 +1,7 @@
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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maikel Stuivenberg