libmongocrypt-helper 1.7.4.0.1000 → 1.7.4.0.1002
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/ext/libmongocrypt/extconf.rb +3 -3
- data/lib/libmongocrypt_helper/version.rb +1 -1
- data/lib/libmongocrypt_helper.rb +2 -2
- data.tar.gz.sig +0 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c28cbfbd91e043ddfd42777c19330e7a3c5c8d3d0915793d2fc69d8f641dd5d8
|
4
|
+
data.tar.gz: 0fe816908825594f1728ae973604f0d3cc5e2288a3f8fad99ccfbaaca4511fa3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57d347930b4799a794eae40254cbc2a9b00b359ea52f55ebdf60b90cd37890aafb46f594d6b4a174f10f50ec102c4de7e0c1eb0d0f36b2777fcfbd0ba80c850a
|
7
|
+
data.tar.gz: 75e290bf291fbcae5043dbd8ed4885cf28ca808672940722e0cc355570aacb186c31d01b9db70ed9b260be7fb80404febfd8bff0f8b447254b60419281924711
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
@@ -32,7 +32,7 @@ cmake_opts = %w(
|
|
32
32
|
-DMONGOCRYPT_ENABLE_CRYPTO=0
|
33
33
|
-DBUILD_TESTING=0
|
34
34
|
)
|
35
|
-
cmake_opts << "-DBUILD_VERSION=#{LibmongocryptHelper::
|
35
|
+
cmake_opts << "-DBUILD_VERSION=#{LibmongocryptHelper::LIBMONGOCRYPT_VERSION}"
|
36
36
|
system("#{CMAKE} #{cmake_opts.join(' ')} #{cmake_dir} -B#{build_dir}")
|
37
37
|
|
38
38
|
# Check if the build directory was successfully generated
|
@@ -45,10 +45,10 @@ Dir.chdir(build_dir) do
|
|
45
45
|
system(MAKE)
|
46
46
|
end
|
47
47
|
|
48
|
-
lib_file_extension = case
|
48
|
+
lib_file_extension = case RbConfig::CONFIG['target_os']
|
49
49
|
when /linux/ then "so"
|
50
50
|
when /darwin/ then "dylib"
|
51
|
-
else abort "ERROR: this gem supports only linux and macos"
|
51
|
+
else abort "ERROR: this gem supports only linux and macos, #{RbConfig::CONFIG['target_os']} is not supported"
|
52
52
|
end
|
53
53
|
|
54
54
|
lib_file = File.join(build_dir, "#{extension_name}.#{lib_file_extension}")
|
data/lib/libmongocrypt_helper.rb
CHANGED
@@ -3,10 +3,10 @@ require 'libmongocrypt_helper/version'
|
|
3
3
|
module LibmongocryptHelper
|
4
4
|
def libmongocrypt_path
|
5
5
|
@libmongocrypt_path ||= begin
|
6
|
-
lib_file_extension = case
|
6
|
+
lib_file_extension = case RbConfig::CONFIG['target_os']
|
7
7
|
when /linux/ then "so"
|
8
8
|
when /darwin/ then "dylib"
|
9
|
-
else raise "ERROR: this gem supports only linux and macos"
|
9
|
+
else raise "ERROR: this gem supports only linux and macos, #{RbConfig::CONFIG['target_os']} is not supported"
|
10
10
|
end
|
11
11
|
|
12
12
|
File.join(
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libmongocrypt-helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.4.0.
|
4
|
+
version: 1.7.4.0.1002
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The MongoDB Ruby Team
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
35
35
|
wkeAWhd5b+5JS0zgDL4SvGB8/W2IY+y0zELkojBMgJPyrpAWHL/WSsSBMuhyI2Pv
|
36
36
|
xxaBVLklnJJ/qCCOZ3lG2MyVc/Nb0Mmq8ygWNsfwHmKKYuuWcviit0D0Tek=
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date: 2023-04-
|
38
|
+
date: 2023-04-24 00:00:00.000000000 Z
|
39
39
|
dependencies: []
|
40
40
|
description: ''
|
41
41
|
email:
|
metadata.gz.sig
CHANGED
Binary file
|