bcrypt-ruby 3.1.3 → 3.1.4
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 +8 -8
- metadata +3 -5
- data/ext/mri/extconf.rb +0 -17
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MmZhZjFiZGIyOTAwMzNiY2ZhNDUxZDc1Mjg1NDBmODc5NGExMjMwNA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NWU2ODA5ZTljMzA5M2FiNjI5ODkxMDU3NGU5MzIyYzU4NDhhYzBiMQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzQ5MmQ0NmRiYzAyZDdlYTg2NmFiMzgxNzk1MWYwMTQ0Y2U1YmI1M2YzNWRh
|
10
|
+
MjNlN2RhMzEyNjA5Njg1MGJkNmIwNTlhOWM4ZmE4YmMxNDg1YTlmMTA4MjJl
|
11
|
+
ZmE1YTM1ZGFlZjZkY2M5MGI0ZGFiMDQ0ZTkxZGMxMjllNmYzZTI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YzU5MzYwMzg1ZGViM2M1NGU5NjQzNTgwNGJkMDg4Y2Y3N2ViYjY2NjMyYTQw
|
14
|
+
YTZhOTZhYTI4OTVjNjhmYWExMWQ3OWMzNjg4NzM4NzQyMmIyZDM1ZGVhNTU5
|
15
|
+
M2VlMzliMzg5MmI5ZDU5MjY0ZjdlN2JkZGY3NzA3ZjA0NDYwOWI=
|
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: ruby
|
6
6
|
authors:
|
7
7
|
- Coda Hale
|
@@ -71,8 +71,7 @@ description: ! " bcrypt() is a sophisticated and secure hash algorithm design
|
|
71
71
|
a simple wrapper for safely handling\n passwords.\n"
|
72
72
|
email: coda.hale@gmail.com
|
73
73
|
executables: []
|
74
|
-
extensions:
|
75
|
-
- ext/mri/extconf.rb
|
74
|
+
extensions: []
|
76
75
|
extra_rdoc_files:
|
77
76
|
- README.md
|
78
77
|
- COPYING
|
@@ -82,7 +81,6 @@ files:
|
|
82
81
|
- CHANGELOG
|
83
82
|
- COPYING
|
84
83
|
- README.md
|
85
|
-
- ext/mri/extconf.rb
|
86
84
|
- lib/bcrypt.rb
|
87
85
|
homepage: https://github.com/codahale/bcrypt-ruby
|
88
86
|
licenses:
|
@@ -93,7 +91,7 @@ post_install_message: ! '
|
|
93
91
|
#######################################################
|
94
92
|
|
95
93
|
|
96
|
-
The bcrypt-ruby gem has changed
|
94
|
+
The bcrypt-ruby gem has changed its name to just bcrypt. Instead of
|
97
95
|
|
98
96
|
installing `bcrypt-ruby`, you should install `bcrypt`. Please update your
|
99
97
|
|
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
|