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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1bffe0c2d9a9799d352157afa3624d395277c2a76166a3e295d0e131e85afa70
4
- data.tar.gz: c4f70103555f32e63147c69119961ab815f9d7ac033a877506e6545d97862689
3
+ metadata.gz: 00fc18ede657315859b349c381f9de8d04f9cbadf34b5e4a539b46c036ca85e2
4
+ data.tar.gz: a370cdb9bc0ecc850539f4e87ac28ed17b8636bf05122e976adc0f5d74f15e99
5
5
  SHA512:
6
- metadata.gz: 9777568a207a703e9c8e268890928c7b889eca48dc89febc66c98668555ff5cd27aaffcef05ba04715a4ce4ed8dd720f3d38ca15d82c15074d57e31e786677f6
7
- data.tar.gz: 4cfb4f972acb049b5fba0df86b6a2298b33cb9efbd9f9efdb6536edf1a47411957bfa776abeb6941dd0b489ec524eb97ab9729d43c02465f98ab924e0558b801
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.6
1
+ 0.1.7
Binary file
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'time'
4
+ require 'set'
4
5
 
5
6
  module Aws
6
7
  module Crt
@@ -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
- File.expand_path("../../bin/#{platform.cpu}", File.dirname(__FILE__))
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.6
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: 2022-08-15 00:00:00.000000000 Z
11
+ date: 2023-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi