rodauth-rails 1.2.0 โ 1.2.1
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/CHANGELOG.md +4 -0
- data/README.md +6 -2
- data/lib/generators/rodauth/migration/base.erb +1 -1
- data/lib/rodauth/rails/feature/instrumentation.rb +1 -1
- data/lib/rodauth/rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43bfba245fc25ff73659728066a02b0227b0041823547767a10fb7025f354329
|
|
4
|
+
data.tar.gz: 8e66a69d20e07b882e633330d27f7fafde524ba8e7af0052c83025bf101c3c10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e94b952207b08ba887d4168e442c669d15d04af11a0dada8f56d38f572ca1c662b0160067c2680cc984a203afe7cb443c1e3d9893544e9920655f4159c463d7f
|
|
7
|
+
data.tar.gz: 56562e10ef5f361511fe090265b6647056f9befa8ba3d2095c90a5e07f18e4e61ba202a6dad28289ccaded5ba096a535ff38a98096e034d811f0749bcc1a1207
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Provides Rails integration for the [Rodauth] authentication framework.
|
|
|
4
4
|
|
|
5
5
|
## Resources
|
|
6
6
|
|
|
7
|
-
Useful links:
|
|
7
|
+
๐ Useful links:
|
|
8
8
|
|
|
9
9
|
* [Rodauth documentation](http://rodauth.jeremyevans.net/documentation.html)
|
|
10
10
|
* [Rails demo](https://github.com/janko/rodauth-demo-rails)
|
|
@@ -12,7 +12,11 @@ Useful links:
|
|
|
12
12
|
* [OmniAuth guide](https://github.com/janko/rodauth-rails/wiki/OmniAuth)
|
|
13
13
|
* [Testing guide](https://github.com/janko/rodauth-rails/wiki/Testing)
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
๐ฅ Screencasts:
|
|
16
|
+
|
|
17
|
+
* [Rails Authentication with Rodauth](https://www.youtube.com/watch?v=2hDpNikacf0)
|
|
18
|
+
|
|
19
|
+
๐ Articles:
|
|
16
20
|
|
|
17
21
|
* [Rodauth: A Refreshing Authentication Solution for Ruby](https://janko.io/rodauth-a-refreshing-authentication-solution-for-ruby/)
|
|
18
22
|
* [Rails Authentication with Rodauth](https://janko.io/adding-authentication-in-rails-with-rodauth/)
|
|
@@ -9,7 +9,7 @@ create_table :accounts<%= primary_key_type %> do |t|
|
|
|
9
9
|
<% else -%>
|
|
10
10
|
t.string :email, null: false
|
|
11
11
|
<% end -%>
|
|
12
|
-
t.
|
|
12
|
+
t.integer :status, null: false, default: 1
|
|
13
13
|
<% case activerecord_adapter -%>
|
|
14
14
|
<% when "postgresql", "sqlite3" -%>
|
|
15
15
|
t.index :email, unique: true, where: "status IN (1, 2)"
|
|
@@ -40,7 +40,7 @@ module Rodauth
|
|
|
40
40
|
begin
|
|
41
41
|
result = catch(:halt) { yield }
|
|
42
42
|
|
|
43
|
-
response = ActionDispatch::Response.new
|
|
43
|
+
response = ActionDispatch::Response.new(*(result || [404, {}, []]))
|
|
44
44
|
payload[:response] = response
|
|
45
45
|
payload[:status] = response.status
|
|
46
46
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rodauth-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Janko Marohniฤ
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-02-
|
|
11
|
+
date: 2022-02-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|