fastlane-plugin-json_auth 1.2.2 → 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb117a2f16824ac236df6ec2f41e0e64b8d3518e446a97829fa296397075fa9e
4
- data.tar.gz: 4c553f33cc5c66630d44e4305fdc2b5b4561db7b43cf8d2202c7f3d06ca8d286
3
+ metadata.gz: f9ec531bfe4c5ec6744d4c50c329c767134e1a8910343cd214ecba49f9b6466e
4
+ data.tar.gz: af1b1716c2675b67d2a3219889e5979f3d90916fe0e702ebb847ab61cfaa6626
5
5
  SHA512:
6
- metadata.gz: 3c96f6a5b2c47cd21594b03098baaad73ee81d0e0e9c48fc043d218bbbfaef404085500a242884ad93df872471c1d66351f42dccb4bf31989d79f7d27a26e881
7
- data.tar.gz: 9d09ce72b94d92fb2ffd21eef52f4a3f7e0575646201457aedd6168d1dc748dd06b73d2bc99f11a94c7caee1461e0da196a7d44fe9290833ef01eb1230a44027
6
+ metadata.gz: bbc8bb700c5ca5ee21abb59b1abcf05c4a522aa4ecddae00125e271c706152561d08b3cb8f2592efcd73f67ec9ac3b5d17a3d85320163b5acbbd6fe8456917d0
7
+ data.tar.gz: 9b98aea9ed49131d78d9cd0070e0018acc6d0da42deada92d69acb6259ab6f5364868d73e37985d8aaacc23eb80d9fc3d1e037a598b0faebde228fa9182685ec
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module JsonAuth
3
+ VERSION = "1.2.3"
4
+ end
5
+ end
@@ -1,7 +1,7 @@
1
- require 'fastlane/plugin/json/version'
1
+ require 'fastlane/plugin/json_auth/version'
2
2
 
3
3
  module Fastlane
4
- module Json
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::Json.all_classes.each do |current|
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.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/json.rb
151
- - lib/fastlane/plugin/json/actions/download_json_action.rb
152
- - lib/fastlane/plugin/json/actions/merge_jsons_action.rb
153
- - lib/fastlane/plugin/json/actions/read_json_action.rb
154
- - lib/fastlane/plugin/json/actions/write_json_action.rb
155
- - lib/fastlane/plugin/json/helper/json_helper.rb
156
- - lib/fastlane/plugin/json/version.rb
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
@@ -1,5 +0,0 @@
1
- module Fastlane
2
- module Json
3
- VERSION = "1.2.2"
4
- end
5
- end