fastlane-plugin-versioning_android_kts 0.1.1 → 0.1.2
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: c38f14538e0cb7e2e7fab4a1108d0e9ac0ce3c4d1d8bbc412c5286ee7b356790
|
|
4
|
+
data.tar.gz: dfc3ec1f8b699f8073bdf2fc6f5ae3fb3b004afadb423c624f5bdd0b9242b8b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d72a9889c9f0d2222caa384d36efc1af1585005b675d9bf3a49e840be3ecd6c853e19d9e5b032a49bc391a97cacb66a7c6bf0e540e6281ee1cafdf14898c884
|
|
7
|
+
data.tar.gz: 38129643ca69585d54a3243c68ea32caa9cb1ecfd57c978ff8e1e95c4f6117b96a32bcc1d75ddc92a257dcab28adb039b3924cec6aed6ff8b1d7becbb5ed5505
|
data/README.md
CHANGED
|
@@ -2,8 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
This is but a fork of the original versioning_android plugin, with slight alterations to work with Gradle KTS. See upstream for details of implementation.
|
|
4
4
|
|
|
5
|
+
This fork:
|
|
6
|
+
|
|
7
|
+
[](https://rubygems.org/gems/fastlane-plugin-versioning_android_kts)
|
|
8
|
+
|
|
5
9
|
Upstream:
|
|
6
10
|
|
|
7
11
|
[](https://travis-ci.org/beplus/fastlane-plugin-versioning_android)
|
|
8
12
|
[](https://rubygems.org/gems/fastlane-plugin-versioning_android)
|
|
9
|
-
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require 'fastlane/plugin/versioning_android_kts/version'
|
|
2
2
|
|
|
3
3
|
module Fastlane
|
|
4
|
-
module
|
|
4
|
+
module VersioningAndroidKts
|
|
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::VersioningAndroidKts.all_classes.each do |current|
|
|
15
15
|
require current
|
|
16
16
|
end
|