bcrypt4 4.0.0 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +3 -0
  3. data/Rakefile +1 -1
  4. data/bcrypt4.gemspec +8 -1
  5. metadata +6 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5871335afc77bc0f3fdce7abeb73ade14a8e22bb
4
- data.tar.gz: 0b65214f452642a96c0445c7cf14b488e09bea51
3
+ metadata.gz: f047f5112b97ed1980e7b7e7c1140e566b1e6f2a
4
+ data.tar.gz: abb0bf8bf3b3f878beec39d70c801d6b4e00cd9f
5
5
  SHA512:
6
- metadata.gz: 8ef66298da8777c5f3e6c7c509d7bf0a923911eaeefe796fd2a620a99186a412b3c44e5da0561f30bc15ebac414fa41cc2849dff78788d4e077e9c312af0c3ca
7
- data.tar.gz: 3e7a0dd8e904e85f2b07f5cb91871fe8530168a5f85339d8bde538d54243907164e29231c0f354215b080b5815aa316bcc1a2ebf1bed6c5658d2d8fe134c5bc0
6
+ metadata.gz: 77934b714f53ab848b2eee8005c3e2ee31cf2497df4d7be6276429af2a40c6d3271e438912d4834ade7fa823cfc291eed652e032bf9924275a510c3259ba50c4
7
+ data.tar.gz: 95f638c06e1a2dd150bef70e0e99ca2015db32dceff66a715171b11768159c656733d717929765853a11e0925adb700b554acf115d1dedef8de6114b7a8fb8d8
data/CHANGELOG CHANGED
@@ -85,3 +85,6 @@
85
85
 
86
86
  4.0.0 Jul 14 2017
87
87
  - Fork of project to update blowfish 1.1 to 1.3
88
+
89
+ 4.0.1 Jul 14 2017
90
+ - Add post-install note about fork
data/Rakefile CHANGED
@@ -20,7 +20,7 @@ CLOBBER.include(
20
20
  "pkg"
21
21
  )
22
22
 
23
- GEMSPEC = Gem::Specification.load("bcrypt.gemspec")
23
+ GEMSPEC = Gem::Specification.load("bcrypt4.gemspec")
24
24
 
25
25
  task :default => [:compile, :spec]
26
26
 
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.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.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