aws-crt 0.1.6-arm64-darwin → 0.1.7-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/VERSION +1 -1
- data/bin/arm64/libaws-crt-ffi.dylib +0 -0
- data/lib/aws-crt/auth/signing_config.rb +1 -0
- data/lib/aws-crt/platforms.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00fc18ede657315859b349c381f9de8d04f9cbadf34b5e4a539b46c036ca85e2
|
4
|
+
data.tar.gz: a370cdb9bc0ecc850539f4e87ac28ed17b8636bf05122e976adc0f5d74f15e99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df671b5d21f16163e145f500fd010e2a26b87b1eaefc1cdc30e544fa67c2307fd086aa42e675e2c2de51723a3de51b0e4b254ec64a98cd76c8cbfa1e80d95ed8
|
7
|
+
data.tar.gz: '0914043fd326256207b126684273e7a4df0f1d3268d7d9a8c5e7ac4ebf122e31fbda12f0aa9a19c82c9a62fd2e11d1bf0d34ec61b27de73527e3dfda9964cc09'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
0.1.7 (2023-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Issue - Update to the latest aws-crt-ffi.
|
8
|
+
* Issue - Add support for overriding crt_bin_dir with `AWS_CRT_RUBY_BIN_DIR`.
|
9
|
+
|
4
10
|
0.1.6 (2022-08-12)
|
5
11
|
------------------
|
6
12
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.7
|
Binary file
|
data/lib/aws-crt/platforms.rb
CHANGED
@@ -27,7 +27,9 @@ end
|
|
27
27
|
|
28
28
|
# @return [String] return the directory of the CRT library for the platform
|
29
29
|
def crt_bin_dir(platform)
|
30
|
-
|
30
|
+
ENV['AWS_CRT_RUBY_BIN_DIR'] ||
|
31
|
+
File.expand_path("../../bin/#{platform.cpu}",
|
32
|
+
File.dirname(__FILE__))
|
31
33
|
end
|
32
34
|
|
33
35
|
# @return [String] return the path to the CRT library for the platform
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-crt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|