fastlane-plugin-match_android_v2 0.3.5 → 0.3.7
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 +4 -4
- data/lib/fastlane/plugin/{match_android/actions/match_android_action.rb → match_android_v2/actions/match_android_v2_action.rb} +2 -2
- data/lib/fastlane/plugin/{match_android/helper/match_android_helper.rb → match_android_v2/helper/match_android_v2_helper.rb} +1 -1
- data/lib/fastlane/plugin/match_android_v2/version.rb +5 -0
- data/lib/fastlane/plugin/{match_android.rb → match_android_v2.rb} +3 -3
- metadata +7 -7
- data/lib/fastlane/plugin/match_android/version.rb +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c1c6712f17b7b2be7bf728763189acc54ea41df7e28d5963e38f149800eacb8
|
4
|
+
data.tar.gz: 590326fe01788ae29c4f7dde11a0d901003dc6ba90d57098896ac26ca1ed3ca3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 311a44c556b1944e89482acdd8dd89999834014eff32965c04e508d49997daa3faa9ad297550466d33570513ef991b9f89135d8c1101f9a25d293ef33f9cf4de
|
7
|
+
data.tar.gz: 6301d33613a239621b011b36682ead44a004b9109760fc9e9f1af8c0a95ea1af98b2a1a7f98e20fe944048d830428c59acffc9e6db9b970b7870255342780165
|
@@ -3,7 +3,7 @@ require 'fileutils'
|
|
3
3
|
require 'os'
|
4
4
|
require 'json'
|
5
5
|
require 'digest'
|
6
|
-
require_relative '../helper/
|
6
|
+
require_relative '../helper/match_android_v2_helper'
|
7
7
|
|
8
8
|
module Fastlane
|
9
9
|
module Actions
|
@@ -14,7 +14,7 @@ module Fastlane
|
|
14
14
|
MATCH_ANDROID_AAB_SIGNED = :MATCH_ANDROID_AAB_SIGNED
|
15
15
|
end
|
16
16
|
|
17
|
-
class
|
17
|
+
class MatchAndroidV2Action < Action
|
18
18
|
|
19
19
|
KEY_VERSION = "2"
|
20
20
|
OPENSSL_BIN_PATH_MAC = "/usr/local/opt/openssl@1.1/bin"
|
@@ -4,7 +4,7 @@ module Fastlane
|
|
4
4
|
UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
|
5
5
|
|
6
6
|
module Helper
|
7
|
-
class
|
7
|
+
class MatchAndroidV2Helper
|
8
8
|
# class methods that you define here become available in your action
|
9
9
|
# as `Helper::MatchAndroidHelper.your_method`
|
10
10
|
#
|
@@ -1,7 +1,7 @@
|
|
1
|
-
require 'fastlane/plugin/
|
1
|
+
require 'fastlane/plugin/match_android_v2/version'
|
2
2
|
|
3
3
|
module Fastlane
|
4
|
-
module
|
4
|
+
module MatchAndroidV2
|
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::
|
14
|
+
Fastlane::MatchAndroidV2.all_classes.each do |current|
|
15
15
|
require current
|
16
16
|
end
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-match_android_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Foo Bar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
@@ -137,17 +137,17 @@ dependencies:
|
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: 2.144.0
|
139
139
|
description:
|
140
|
-
email:
|
140
|
+
email: dummyemail@gmail.com
|
141
141
|
executables: []
|
142
142
|
extensions: []
|
143
143
|
extra_rdoc_files: []
|
144
144
|
files:
|
145
145
|
- LICENSE
|
146
146
|
- README.md
|
147
|
-
- lib/fastlane/plugin/
|
148
|
-
- lib/fastlane/plugin/
|
149
|
-
- lib/fastlane/plugin/
|
150
|
-
- lib/fastlane/plugin/
|
147
|
+
- lib/fastlane/plugin/match_android_v2.rb
|
148
|
+
- lib/fastlane/plugin/match_android_v2/actions/match_android_v2_action.rb
|
149
|
+
- lib/fastlane/plugin/match_android_v2/helper/match_android_v2_helper.rb
|
150
|
+
- lib/fastlane/plugin/match_android_v2/version.rb
|
151
151
|
homepage: https://github.com/CursedMun/fastlane-plugin-match_android
|
152
152
|
licenses:
|
153
153
|
- MIT
|