authentication-zero 4.0.0 → 4.0.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/.github/workflows/CI.yml +2 -2
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/authentication_zero/version.rb +1 -1
- data/lib/generators/authentication/authentication_generator.rb +1 -1
- data/lib/generators/authentication/templates/controllers/api/identity/password_resets_controller.rb.tt +0 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84ff6a85acc17f4561f1362e2e7fa15ad27c434cee6191f57dd7623f49b506ff
|
4
|
+
data.tar.gz: 75fef66fa0926ba2c2a797db8a7d85cb58cdbf90891f0cb50e3cb318873fff10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b80db262196da2d9107246f47949c88a73110f58298a9d29eb6c94eba2b8e255a9206f09539b3bad6702156e96fbfd1960ae789530d595e303858b36f92364b8
|
7
|
+
data.tar.gz: c234410b5f2458a41be599d2529b377ed62436ff071eb87bc8bb49479d06d7382ac835ff7e82be7caf9f4b173ea45007362fc1836cedc27cc836e82f6cc71c4b
|
data/.github/workflows/CI.yml
CHANGED
@@ -22,7 +22,7 @@ jobs:
|
|
22
22
|
bundler-cache: true
|
23
23
|
|
24
24
|
- name: Install the latest Rails gem
|
25
|
-
run: gem install rails -v "7.1
|
25
|
+
run: gem install rails -v "7.2.1"
|
26
26
|
|
27
27
|
- name: Install Rubocop
|
28
28
|
run: gem install rubocop rubocop-performance rubocop-minitest rubocop-packaging rubocop-minitest rubocop-rails
|
@@ -65,7 +65,7 @@ jobs:
|
|
65
65
|
bundler-cache: true
|
66
66
|
|
67
67
|
- name: Install the latest Rails gem
|
68
|
-
run: gem install rails -v "7.1
|
68
|
+
run: gem install rails -v "7.2.1"
|
69
69
|
|
70
70
|
- name: Install Rubocop
|
71
71
|
run: gem install rubocop rubocop-performance rubocop-minitest rubocop-packaging rubocop-minitest rubocop-rails
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -8,7 +8,7 @@ The purpose of authentication zero is to generate a pre-built authentication sys
|
|
8
8
|
$ bundle add authentication-zero
|
9
9
|
```
|
10
10
|
|
11
|
-
If you are using Rails <
|
11
|
+
If you are using Rails < 7.2, you must use version 3.
|
12
12
|
|
13
13
|
```
|
14
14
|
$ bundle add authentication-zero --version "~> 3"
|
@@ -8,7 +8,7 @@ class AuthenticationGenerator < Rails::Generators::Base
|
|
8
8
|
class_option :sudoable, type: :boolean, desc: "Add password request before sensitive data changes"
|
9
9
|
class_option :lockable, type: :boolean, desc: "Add password reset locking"
|
10
10
|
class_option :ratelimit, type: :boolean, desc: "Add request rate limiting"
|
11
|
-
class_option :passwordless, type: :boolean, desc: "Add passwordless sign"
|
11
|
+
class_option :passwordless, type: :boolean, desc: "Add passwordless sign in"
|
12
12
|
class_option :omniauthable, type: :boolean, desc: "Add social login support"
|
13
13
|
class_option :trackable, type: :boolean, desc: "Add activity log support"
|
14
14
|
class_option :two_factor, type: :boolean, desc: "Add two factor authentication"
|