password_reuse_policy 1.0.0 → 1.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/README.md +2 -0
- data/lib/password_reuse_policy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8ea738df36fc750a2473f1e24cb7b172016f8685
|
|
4
|
+
data.tar.gz: 021f6094f5a2e35e0f3022c93a8cae35b42a6733
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19eb4cdb4b56a50c6a6a9a2e65caa0a74d4084d7349750bd0c7939e8daf6286756f33a9d06ffa879f24ea04d7d7c948fd846a1c35fee3a146ea8278b8bfc1e65
|
|
7
|
+
data.tar.gz: 0405bce6a02f0594c682d2adadea5cdb9422463c9a826914696d86cbbcbcbb3c74af0eb007b29a906edab41875faf33b26a8c86e64decf5185c84f13f786ba1c
|
data/README.md
CHANGED
|
@@ -48,6 +48,8 @@ Link to sample applciation, devise is used for authentication, it uses password
|
|
|
48
48
|
|
|
49
49
|
To check the usage with active record visit
|
|
50
50
|
[https://github.com/naveenagarwal/password_reuse_policy_testapp](https://github.com/naveenagarwal/password_reuse_policy_testapp)
|
|
51
|
+
Make sure you have there is a column exists in the table named `last_used_passwords` as `text` DataType when using with active_record.
|
|
52
|
+
|
|
51
53
|
|
|
52
54
|
To check the usage with mongoid visit
|
|
53
55
|
[https://github.com/naveenagarwal/password_reuse_policy_testapp/tree/mogoid_module_test](https://github.com/naveenagarwal/password_reuse_policy_testapp/tree/mogoid_module_test)
|