git ssb

0+

dangerousbeans / %aPBe2k3ugtjBr4rrsU1…



Commit b82c7140eb4ecedc20ab3a7c0d0801667d1907b3

Version bump to 3.1.9

T.J. Schuck committed on 10/23/2014, 9:49:13 PM
Parent: 591b5cca61c487f0cad891d0e2bd80144be99e72

Files changed

CHANGELOGchanged
Gemfile.lockchanged
bcrypt.gemspecchanged
lib/bcrypt.rbchanged
CHANGELOGView
@@ -72,4 +72,7 @@
7272 - The 2.1 support for Windows binaries alleged in 3.1.3 was a lie -- documentation removed
7373
7474 3.1.8 Oct 23 2014
7575 - Add support for Ruby 2.1 in compiled Windows binaries [GH #102]
76+
77+3.1.9 Oct 23 2014
78+ - Rebuild corrupt binaries
Gemfile.lockView
@@ -1,8 +1,8 @@
11 PATH
22 remote: .
33 specs:
4- bcrypt (3.1.8)
4+ bcrypt (3.1.9)
55
66 GEM
77 remote: https://rubygems.org/
88 specs:
bcrypt.gemspecView
@@ -1,7 +1,7 @@
11 Gem::Specification.new do |s|
22 s.name = 'bcrypt'
3- s.version = '3.1.8'
3+ s.version = '3.1.9'
44
55 s.summary = "OpenBSD's bcrypt() password hashing algorithm."
66 s.description = <<-EOF
77 bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project
lib/bcrypt.rbView
@@ -8,9 +8,14 @@
88 else
99 require "openssl"
1010 end
1111
12-require 'bcrypt_ext'
12+begin
13+ RUBY_VERSION =~ /(\d+.\d+)/
14+ require "#{$1}/bcrypt_ext"
15+rescue LoadError
16+ require "bcrypt_ext"
17+end
1318
1419 require 'bcrypt/error'
1520 require 'bcrypt/engine'
1621 require 'bcrypt/password'

Built with git-ssb-web