solrengine-auth 0.1.0 → 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: 6622627cd1bbb261117bfab5b6a746b51c511885aae27f43f9246a9985d861d7
4
- data.tar.gz: 6cdab9cc1a1b92d0a4dff46b2119d90ab76a78e2fdae6181ffb3d34eaa82ab0d
3
+ metadata.gz: 0c4049a1a2b2adb7a30af99a343c8a219954167c1b4e0c67a947e5a1d65d8815
4
+ data.tar.gz: 23a76f31bf9589267c2556b2c3293246490ea515357eca7327e3ebf876baa09f
5
5
  SHA512:
6
- metadata.gz: 9a90484823d798a4aadc0c448a79bc99094b26ed85f4c24ab71aa301a8f31461cfb020de3c3bf6f7751bfe386a1b0e66e38f370e4980d37c651bd52f4a8b6ce5
7
- data.tar.gz: 0f994647ae7a0a85ac5b8c7ab459c95a25fe23ed2fd47a564544d6de4d0a02ebae3627bb0683398aba1f4c10604312b4fb4b692ff6022ec2d68eb36215cf9a92
6
+ metadata.gz: 41ea452767bb826ed95b2c98ff60c862cfe98dcdac45ced17cc62605bb172d62bc3a8327e858ecd007c3cceb89abb6c2687f3d708106f44973a49eaeb924f912
7
+ data.tar.gz: 79ae5ff273b2ca697d0df51f1ff4c6216b644e583604131013ed19840b7ebdab5b13ce99310a8f3726b84d7a0a307a5eef77d28a2ca6626ad6e0a7f67ff39420
data/README.md CHANGED
@@ -16,7 +16,7 @@ Run the generator:
16
16
 
17
17
  ```bash
18
18
  rails generate solrengine:auth:install
19
- rails db:migrate
19
+ rails db:prepare
20
20
  ```
21
21
 
22
22
  This adds:
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Solrengine
4
4
  module Auth
5
- class ApplicationController < ActionController::Base
5
+ class ApplicationController < ::ApplicationController
6
6
  end
7
7
  end
8
8
  end
data/config/routes.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Solrengine::Auth::Engine.routes.draw do
4
4
  get "login", to: "sessions#new", as: :login
5
- post "nonce", to: "sessions#nonce", as: :nonce
5
+ get "nonce", to: "sessions#nonce", as: :nonce
6
6
  post "verify", to: "sessions#create", as: :verify
7
7
  delete "logout", to: "sessions#destroy", as: :logout
8
8
  end
@@ -37,7 +37,7 @@ module Solrengine
37
37
  end
38
38
  end
39
39
 
40
- def create_migration
40
+ def create_users_migration
41
41
  migration_template "migration.rb.erb", "db/migrate/create_users_with_wallet_auth.rb"
42
42
  rescue Rails::Generators::Error
43
43
  say_status :skip, "Migration already exists", :yellow
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Solrengine
4
4
  module Auth
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solrengine-auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jose Ferrer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-21 00:00:00.000000000 Z
11
+ date: 2026-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails