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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4e06b9023fee87fd8459212b67a179f3724c88fbfbb67be2c68492ed58c8238
4
- data.tar.gz: 71a27b77602bdbf57cf75128ed854e686aed1def0a4c2d95bf6478489fe7ace6
3
+ metadata.gz: 4c1c6712f17b7b2be7bf728763189acc54ea41df7e28d5963e38f149800eacb8
4
+ data.tar.gz: 590326fe01788ae29c4f7dde11a0d901003dc6ba90d57098896ac26ca1ed3ca3
5
5
  SHA512:
6
- metadata.gz: d8c147c5bcdb085b0723689fa5e24fef8d43f8bcd1ad06a844e6ac564d1906060ee5d04be2865444d0f368eb7893e0546ea42c82151e38ec2e6249c312a95788
7
- data.tar.gz: 7bf6a3c3f0bf0a2d8d08a3493c6144f848d02dd5e32d9b2e2557fd016d20b934e617f6bdd0b1d8ec8db4f9f039debda10fce20f59af8f33c558f7bdf4460495d
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/match_android_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 MatchAndroidAction < Action
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 MatchAndroidHelper
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
  #
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module MatchAndroidV2
3
+ VERSION = "0.3.7"
4
+ end
5
+ end
@@ -1,7 +1,7 @@
1
- require 'fastlane/plugin/match_android/version'
1
+ require 'fastlane/plugin/match_android_v2/version'
2
2
 
3
3
  module Fastlane
4
- module MatchAndroid
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::MatchAndroid.all_classes.each do |current|
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.5
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
- - Maikel Stuivenberg
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: maikel.stuivenberg@gmail.com
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/match_android.rb
148
- - lib/fastlane/plugin/match_android/actions/match_android_action.rb
149
- - lib/fastlane/plugin/match_android/helper/match_android_helper.rb
150
- - lib/fastlane/plugin/match_android/version.rb
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
@@ -1,5 +0,0 @@
1
- module Fastlane
2
- module MatchAndroid
3
- VERSION = "0.3.5"
4
- end
5
- end