sequel_secure_password 0.2.13 → 0.2.14
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/.travis.yml +1 -4
- data/README.md +8 -5
- data/lib/sequel_secure_password/version.rb +1 -1
- data/lib/sequel_secure_password.rb +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f782fba9202ca70da14d5d3df72bdda93b50d12
|
4
|
+
data.tar.gz: 3c5e554d0493c75e9774c80dee73e709ef49e6f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 801bb73dc87429fb789d565ea30e9da14bb771b3ea5fc938bcae45c5ad872366197de4f175faad8f86d7876d864b5cc04d9137613f00eefe3511ed86a8953e62
|
7
|
+
data.tar.gz: 7c6586f236cc197e2fb0cfd9bf199863533ad09ff3178a8701dee3ef74032ed8808a70fc8a0ab0e1550278eee741e09368cc2db97bf241f1ebcb745e96539166
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -68,8 +68,11 @@ Example model:
|
|
68
68
|
3. Once we both agree on the change I'll implement it or if you want it really
|
69
69
|
badly, fork the project and create a pull request.
|
70
70
|
|
71
|
-
##
|
72
|
-
|
73
|
-
Thanks to [@send](https://github.com/send) for implementing the `:cost`
|
74
|
-
|
75
|
-
|
71
|
+
## Acknowledgements
|
72
|
+
|
73
|
+
- Thanks to [@send](https://github.com/send) for implementing the `:cost`
|
74
|
+
option;
|
75
|
+
- Thanks to [@badosu](https://github.com/badosu) for motivating me to add
|
76
|
+
`:include_validations` option.
|
77
|
+
- Thanks to [@AlexWayfer](https://github.com/AlexWayfer) for fixing a bug that
|
78
|
+
prevented inheriting from classes using the plugin.
|
@@ -27,9 +27,9 @@ module Sequel
|
|
27
27
|
|
28
28
|
# NOTE: nil as a value means that the value of the instance variable
|
29
29
|
# will be assigned as is in the subclass.
|
30
|
-
Plugins.inherited_instance_variables(self,
|
31
|
-
|
32
|
-
|
30
|
+
Plugins.inherited_instance_variables(self, :@cost => nil,
|
31
|
+
:@include_validations => nil,
|
32
|
+
:@digest_column => nil)
|
33
33
|
end
|
34
34
|
|
35
35
|
module InstanceMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sequel_secure_password
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mateusz Lenik
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bcrypt
|
@@ -151,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
151
151
|
version: '0'
|
152
152
|
requirements: []
|
153
153
|
rubyforge_project:
|
154
|
-
rubygems_version: 2.6.
|
154
|
+
rubygems_version: 2.6.10
|
155
155
|
signing_key:
|
156
156
|
specification_version: 4
|
157
157
|
summary: Plugin adds BCrypt authentication and password hashing to Sequel models.
|