fastlane-plugin-json_auth 1.2.2 → 1.2.3
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/{json → json_auth}/actions/download_json_action.rb +0 -0
- data/lib/fastlane/plugin/{json → json_auth}/actions/merge_jsons_action.rb +0 -0
- data/lib/fastlane/plugin/{json → json_auth}/actions/read_json_action.rb +0 -0
- data/lib/fastlane/plugin/{json → json_auth}/actions/write_json_action.rb +0 -0
- data/lib/fastlane/plugin/{json → json_auth}/helper/json_helper.rb +0 -0
- data/lib/fastlane/plugin/json_auth/version.rb +5 -0
- data/lib/fastlane/plugin/{json.rb → json_auth.rb} +3 -3
- metadata +8 -8
- data/lib/fastlane/plugin/json/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: f9ec531bfe4c5ec6744d4c50c329c767134e1a8910343cd214ecba49f9b6466e
|
|
4
|
+
data.tar.gz: af1b1716c2675b67d2a3219889e5979f3d90916fe0e702ebb847ab61cfaa6626
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bbc8bb700c5ca5ee21abb59b1abcf05c4a522aa4ecddae00125e271c706152561d08b3cb8f2592efcd73f67ec9ac3b5d17a3d85320163b5acbbd6fe8456917d0
|
|
7
|
+
data.tar.gz: 9b98aea9ed49131d78d9cd0070e0018acc6d0da42deada92d69acb6259ab6f5364868d73e37985d8aaacc23eb80d9fc3d1e037a598b0faebde228fa9182685ec
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
require 'fastlane/plugin/
|
|
1
|
+
require 'fastlane/plugin/json_auth/version'
|
|
2
2
|
|
|
3
3
|
module Fastlane
|
|
4
|
-
module
|
|
4
|
+
module JsonAuth
|
|
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::JsonAuth.all_classes.each do |current|
|
|
15
15
|
require current
|
|
16
16
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-json_auth
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Gonzalez
|
|
@@ -147,13 +147,13 @@ extra_rdoc_files: []
|
|
|
147
147
|
files:
|
|
148
148
|
- LICENSE
|
|
149
149
|
- README.md
|
|
150
|
-
- lib/fastlane/plugin/
|
|
151
|
-
- lib/fastlane/plugin/
|
|
152
|
-
- lib/fastlane/plugin/
|
|
153
|
-
- lib/fastlane/plugin/
|
|
154
|
-
- lib/fastlane/plugin/
|
|
155
|
-
- lib/fastlane/plugin/
|
|
156
|
-
- lib/fastlane/plugin/
|
|
150
|
+
- lib/fastlane/plugin/json_auth.rb
|
|
151
|
+
- lib/fastlane/plugin/json_auth/actions/download_json_action.rb
|
|
152
|
+
- lib/fastlane/plugin/json_auth/actions/merge_jsons_action.rb
|
|
153
|
+
- lib/fastlane/plugin/json_auth/actions/read_json_action.rb
|
|
154
|
+
- lib/fastlane/plugin/json_auth/actions/write_json_action.rb
|
|
155
|
+
- lib/fastlane/plugin/json_auth/helper/json_helper.rb
|
|
156
|
+
- lib/fastlane/plugin/json_auth/version.rb
|
|
157
157
|
homepage: https://github.com/thangnc/fastlane-plugin-json_auth
|
|
158
158
|
licenses:
|
|
159
159
|
- MIT
|