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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb3467bad34c31b1b22dd7092b9cf7a8181eba20e7888585d89f2849564ecedc
|
4
|
+
data.tar.gz: f15259619f27ae33390afe6dbe48afa13fc80b815692526c3d0469034c76c41a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b131c9ad6a715e29924593e6d726904776e1fb9ab3feb1d1449b591f243a76ace57f0b3606d1b4ccde0aa344a15b3cb1b413a1962b0f167c8d6f35951aa9ba9a
|
7
|
+
data.tar.gz: b39e9f1fae01ea0a6fbbacc7cdd2a812a4b81eca39a5847b8b4ca051f5fe95211dca2d034473fd1e27e9c350d31513601c179653899877cb618eb9ae73411933
|
@@ -4,9 +4,9 @@ module Fastlane
|
|
4
4
|
UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
|
5
5
|
|
6
6
|
module Helper
|
7
|
-
class
|
7
|
+
class MatchAndroidHelper
|
8
8
|
# class methods that you define here become available in your action
|
9
|
-
# as `Helper::
|
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,7 +1,7 @@
|
|
1
1
|
require 'fastlane/plugin/match_android/version'
|
2
2
|
|
3
3
|
module Fastlane
|
4
|
-
module
|
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::
|
14
|
+
Fastlane::MatchAndroid.all_classes.each do |current|
|
15
15
|
require current
|
16
16
|
end
|