bcrypt-ruby 3.1.3-x64-mingw32 → 3.1.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/2.0/bcrypt_ext.so +0 -0
- metadata +2 -3
- data/ext/mri/extconf.rb +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: c7d50f0d33ab35d6cf2115ba0b687511fd7099ca
|
4
|
-
data.tar.gz: 17c5cbb58496cb4af4e6ff6ac3a36111262d90dd
|
5
2
|
SHA512:
|
6
|
-
|
7
|
-
|
3
|
+
data.tar.gz: 6211a94b38fd3178c0024cf95238b76a09b497fe373ec8a4d5677fcf696807f8c7e7e966d4eefd523ae6a391510f0be03cfc247188adf100d4a5d451e8d80617
|
4
|
+
metadata.gz: 1e0f9aeb5511519da415b5ad3e3f8336288107cc3cb3cdeb747d220f4cd52861d0914fc2a628357ef6d2418e1df33d807cedec60ef80eece02e4fb1ca846ece0
|
5
|
+
SHA1:
|
6
|
+
data.tar.gz: 91a635300196e6540b2539307da4103720fc6583
|
7
|
+
metadata.gz: 60efecbf35b9601cadc61c8fc2e5039ae2ba6430
|
data/lib/2.0/bcrypt_ext.so
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bcrypt-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.4
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Coda Hale
|
@@ -65,7 +65,6 @@ extra_rdoc_files:
|
|
65
65
|
- lib/bcrypt.rb
|
66
66
|
files:
|
67
67
|
- lib/bcrypt.rb
|
68
|
-
- ext/mri/extconf.rb
|
69
68
|
- README.md
|
70
69
|
- COPYING
|
71
70
|
- CHANGELOG
|
@@ -79,7 +78,7 @@ post_install_message: |+
|
|
79
78
|
|
80
79
|
#######################################################
|
81
80
|
|
82
|
-
The bcrypt-ruby gem has changed
|
81
|
+
The bcrypt-ruby gem has changed its name to just bcrypt. Instead of
|
83
82
|
installing `bcrypt-ruby`, you should install `bcrypt`. Please update your
|
84
83
|
dependencies accordingly.
|
85
84
|
|
data/ext/mri/extconf.rb
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
if RUBY_PLATFORM == "java"
|
2
|
-
# Don't do anything when run in JRuby; this allows gem installation to pass.
|
3
|
-
# We need to write a dummy Makefile so that RubyGems doesn't think compilation
|
4
|
-
# failed.
|
5
|
-
File.open('Makefile', 'w') do |f|
|
6
|
-
f.puts "all:"
|
7
|
-
f.puts "\t@true"
|
8
|
-
f.puts "install:"
|
9
|
-
f.puts "\t@true"
|
10
|
-
end
|
11
|
-
exit 0
|
12
|
-
else
|
13
|
-
require "mkmf"
|
14
|
-
have_header('ruby/util.h')
|
15
|
-
dir_config("bcrypt_ext")
|
16
|
-
create_makefile("bcrypt_ext")
|
17
|
-
end
|