fastlane-plugin-android_versioning_plus 0.5.5 → 0.5.6
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: c9dace8478bcd98a6e792e277e6d198ba18cc41fcd38b1f83840e5be94ee9f10
|
4
|
+
data.tar.gz: efae27d6e0e07250ad3b56daa4088b18f4234b3fddfcb1398ab1056be661c2de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f171eab0ae4f1cd8deaf5946c282f9d3812945fed26f7e4b0cc315d3a1616b09f7103343568cf2e8c6e31ecb0776717f8ef5c0ecba725e3ee50bf350389bc9a8
|
7
|
+
data.tar.gz: 20bdce2cd422b7e7b46767c2d23977c7b4cabeb1b0f837fcffac6843383332a1d217f1c311f1dbc7867c8bc8582d1c078587cfed179540dd0331c5a48b35cd08
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'fastlane/plugin/android_versioning_plus/version'
|
2
2
|
|
3
3
|
module Fastlane
|
4
|
-
module
|
4
|
+
module AndroidVersioningPlus
|
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::AndroidVersioningPlus.all_classes.each do |current|
|
15
15
|
require current
|
16
16
|
end
|