bcrypt4 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/CHANGELOG +3 -0
- data/Rakefile +1 -1
- data/bcrypt4.gemspec +8 -1
- metadata +6 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f047f5112b97ed1980e7b7e7c1140e566b1e6f2a
|
|
4
|
+
data.tar.gz: abb0bf8bf3b3f878beec39d70c801d6b4e00cd9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77934b714f53ab848b2eee8005c3e2ee31cf2497df4d7be6276429af2a40c6d3271e438912d4834ade7fa823cfc291eed652e032bf9924275a510c3259ba50c4
|
|
7
|
+
data.tar.gz: 95f638c06e1a2dd150bef70e0e99ca2015db32dceff66a715171b11768159c656733d717929765853a11e0925adb700b554acf115d1dedef8de6114b7a8fb8d8
|
data/CHANGELOG
CHANGED
data/Rakefile
CHANGED
data/bcrypt4.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'bcrypt4'
|
|
3
|
-
s.version = '4.0.
|
|
3
|
+
s.version = '4.0.1'
|
|
4
4
|
|
|
5
5
|
s.summary = "OpenBSD's bcrypt() password hashing algorithm."
|
|
6
6
|
s.description = <<-EOF
|
|
@@ -26,4 +26,11 @@ Gem::Specification.new do |s|
|
|
|
26
26
|
s.email = "coda.hale@gmail.com"
|
|
27
27
|
s.homepage = "https://github.com/dissolve/bcrypt-ruby"
|
|
28
28
|
s.license = "MIT"
|
|
29
|
+
|
|
30
|
+
s.post_install_message = %q{
|
|
31
|
+
|
|
32
|
+
The 'bcrypt' gem has had a long running issue that has prevented interop with other implementations of bcrypt. The maintainer seems to be waiting on some specific implementation support before fixing this issue (raised 2 years ago). The 'bcrypt4' gem was created to simply fix that issue. I am no longer waiting for the original maintainer.
|
|
33
|
+
|
|
34
|
+
}
|
|
35
|
+
|
|
29
36
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bcrypt4
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Coda Hale
|
|
@@ -103,7 +103,11 @@ homepage: https://github.com/dissolve/bcrypt-ruby
|
|
|
103
103
|
licenses:
|
|
104
104
|
- MIT
|
|
105
105
|
metadata: {}
|
|
106
|
-
post_install_message:
|
|
106
|
+
post_install_message: |2+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
The 'bcrypt' gem has had a long running issue that has prevented interop with other implementations of bcrypt. The maintainer seems to be waiting on some specific implementation support before fixing this issue (raised 2 years ago). The 'bcrypt4' gem was created to simply fix that issue. I am no longer waiting for the original maintainer.
|
|
110
|
+
|
|
107
111
|
rdoc_options:
|
|
108
112
|
- "--title"
|
|
109
113
|
- bcrypt-ruby
|