bcrypt-ruby 3.1.3-x86-mingw32 → 3.1.4-x86-mingw32

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 2e3ddb20f23ec6d9277bd974e64a4b856b113b5b
4
- data.tar.gz: ff4b79f24dfdde0a0e13f2c1f2d8154c24f36cf4
5
2
  SHA512:
6
- metadata.gz: 0e525e04a2df52895d13af80a804d2230e8ba7ebc50b428e4b9c6651a185202394efbe09defdd7c84194e5e47c31d000f0b8afc5f888b69e6942ed4caac4b712
7
- data.tar.gz: 0316010dd61498fc201dc4743f0f2127f3d87c9504b2b02dcaa9830f37da4ad66d73a5da176b85c9de4c44a14d5ad524594991a05cfb76dd960c28bb87ee7cf3
3
+ data.tar.gz: 59e34d74a2ec0d89c2c5e5a0750f331ff4c49e128da3c5001882955596711aa57a069d220cfcaedb6b74c1bd544da95b64554fe29d86567ca6d358d2ded89241
4
+ metadata.gz: 11a2b7e6346643cc5ade7d50b30052c62f47edd08dc0cfe0f331898101036fd83a9aef0b723e551a6df31d4210ed78c56737bb279c368751e9d16149ff3b10f4
5
+ SHA1:
6
+ data.tar.gz: 5d06df9896849e38e7c0633aad1eb99ba742e485
7
+ metadata.gz: eb5861d6e1e2d6317d22f86730c45aa178e82547
Binary file
Binary file
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.3
4
+ version: 3.1.4
5
5
  platform: x86-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
@@ -81,7 +80,7 @@ post_install_message: |+
81
80
 
82
81
  #######################################################
83
82
 
84
- The bcrypt-ruby gem has changed it's name to just bcrypt. Instead of
83
+ The bcrypt-ruby gem has changed its name to just bcrypt. Instead of
85
84
  installing `bcrypt-ruby`, you should install `bcrypt`. Please update your
86
85
  dependencies accordingly.
87
86
 
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