aws-crt 0.1.6-x86_64-darwin → 0.1.7-x86_64-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/x86_64/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: b21937bf0e18bc275e11dcd459ea542b7925c419493b2795df92f5e9e07a83bb
|
4
|
+
data.tar.gz: fce375999c6169f4dffdfa5cf4d562da82e9fa849c923be3d80cd5a13ce35ab7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b778d3ae12027e5df416f4910b1e0187eeb2887d9d1fcd1283559ca225d25c57a9fe69d00e806e10b196a69acbc2cb2e70b929a9c1172208e5028a95b52df625
|
7
|
+
data.tar.gz: 757c0e5c16f840b72f25b9ecdae883e694a4c632e511495da54fd2c12fba0da4d1317e6acb72430c6f1681bb9ee540291ee5b08809146b8bdfd72175f2abaf2f
|
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: x86_64-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
|