mks_auth 1.2.0 → 1.4.0

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: c9befc13ee79dba3fce47aa04621b0cbab4983d6f32e22eefa8f8ea038dc0235
4
- data.tar.gz: 8799d30c67e91c2f773bae8715e17a6b17bbf2fcff1bb1a232761955f142778a
3
+ metadata.gz: bb9f3e4044ff6afdd5fb2976a8b9cdbcd2a3eb9140f1c7f21565e912e963ef92
4
+ data.tar.gz: f7d39dedae27d2e95bd7052c5e90dadc679132048d51b4acdf0b914ea2ba36cb
5
5
  SHA512:
6
- metadata.gz: bded2f7264869bf5dfb2437d39f5e6c5950a1c949c9effc36522fc547f40299dabb9e9e72b87a7f852af39f4daf7f4e3bd6b0ad2a0f5cbe02a278b190eb21e70
7
- data.tar.gz: 510531747665163e392c2593ce3f9815c506d7555347a7e2a20da552954b803bf7cbd0aa7a2bcbbab34242a062d99cc5f29ba9b236c89b00cd031e8882a81a17
6
+ metadata.gz: e33d69f6e00b0e8948ad65ed8e25db87654023f69eda3c1e4ba6bc5f30e7297e8a6f33ba13c61d29ffa9eccb78d995e265f81a0b88c9b1f7a30cd2f2ebe94b4a
7
+ data.tar.gz: f4a4465366f78f1087793b00a74741a6a611f01e0a9867ce07fea31ad671ab6cadf2402316eec93edf6c760bbf6a7dc5f55d8f90c926d5c38b53ca9ee9eb09dc
@@ -1,5 +1,5 @@
1
1
  module Mks
2
2
  module Auth
3
- VERSION = '1.2.0'
3
+ VERSION = '1.4.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mks_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henock L.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-14 00:00:00.000000000 Z
11
+ date: 2020-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -118,9 +118,6 @@ files:
118
118
  - MIT-LICENSE
119
119
  - README.md
120
120
  - Rakefile
121
- - app/assets/config/mks_auth_manifest.js
122
- - app/assets/javascripts/mks_auth/application.js
123
- - app/assets/stylesheets/mks_auth/application.css
124
121
  - app/controllers/mks/auth/access_controller.rb
125
122
  - app/controllers/mks/auth/application_controller.rb
126
123
  - app/controllers/mks/auth/application_modules_controller.rb
@@ -128,8 +125,6 @@ files:
128
125
  - app/controllers/mks/auth/users_controller.rb
129
126
  - app/helpers/mks/auth/access_helper.rb
130
127
  - app/helpers/mks/auth/application_helper.rb
131
- - app/jobs/mks_auth/application_job.rb
132
- - app/mailers/mks_auth/application_mailer.rb
133
128
  - app/models/mks/auth/application_module.rb
134
129
  - app/models/mks/auth/application_record.rb
135
130
  - app/models/mks/auth/menu.rb
@@ -1,2 +0,0 @@
1
- //= link_directory ../javascripts/mks_auth .js
2
- //= link_directory ../stylesheets/mks_auth .css
@@ -1,13 +0,0 @@
1
- // This is a manifest file that'll be compiled into application.js, which will include all the files
2
- // listed below.
3
- //
4
- // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
- // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
- //
7
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
- // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
- //
10
- // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
- // about supported directives.
12
- //
13
- //= require_tree .
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,4 +0,0 @@
1
- module MksAuth
2
- class ApplicationJob < ActiveJob::Base
3
- end
4
- end
@@ -1,6 +0,0 @@
1
- module MksAuth
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: 'from@example.com'
4
- layout 'mailer'
5
- end
6
- end