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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dabd3b67a25ab06cb9acd5ffb16b1902a16fbc27
4
- data.tar.gz: e817b065fa0eb340e85a54531f7c25c919f2fee2
3
+ metadata.gz: 9f782fba9202ca70da14d5d3df72bdda93b50d12
4
+ data.tar.gz: 3c5e554d0493c75e9774c80dee73e709ef49e6f9
5
5
  SHA512:
6
- metadata.gz: 2c5daf2abeba68cd96b6b2e3adf4de30cc3cb0e89793fb4a43144cab366631eadff4b8ac1326a5267c2704d8b4aad536b8b0874ccae7f8797ccadf02f2752f0f
7
- data.tar.gz: 11c5027412f8dcc973db49022d04debfbce4d3ab7cdb517d8fe677487ec4e3fd9788ac7ab79c8c54adf0d1c03792289e2a457020786eb4c02f4f6dfe22683ec0
6
+ metadata.gz: 801bb73dc87429fb789d565ea30e9da14bb771b3ea5fc938bcae45c5ad872366197de4f175faad8f86d7876d864b5cc04d9137613f00eefe3511ed86a8953e62
7
+ data.tar.gz: 7c6586f236cc197e2fb0cfd9bf199863533ad09ff3178a8701dee3ef74032ed8808a70fc8a0ab0e1550278eee741e09368cc2db97bf241f1ebcb745e96539166
data/.travis.yml CHANGED
@@ -1,10 +1,7 @@
1
1
  language: ruby
2
2
  script: bundle exec rake spec
3
3
  rvm:
4
- - 1.9.3
5
- - 2.0.0
4
+ - 2.0
6
5
  - 2.1
7
6
  - 2.2
8
7
  - 2.3
9
- - 2.4
10
- - jruby-19mode
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
- ## Thanks
72
-
73
- Thanks to [@send](https://github.com/send) for implementing the `:cost` option
74
- and to [@badosu](https://github.com/badosu) for motivating me to add
75
- `:include_validations` option.
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.
@@ -1,3 +1,3 @@
1
1
  module SequelSecurePassword
2
- VERSION = "0.2.13"
2
+ VERSION = "0.2.14"
3
3
  end
@@ -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, '@cost': nil,
31
- '@include_validations': nil,
32
- '@digest_column': nil)
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.13
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-23 00:00:00.000000000 Z
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.9
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.