aws-crt 0.1.6-x64-mingw32 → 0.1.7-x64-mingw32

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: 31132df91573dcd6e8bcbcc3b80ce3756ae1b49a74de0744fdb51715781d3d64
4
- data.tar.gz: 54af56c674d3fc38e0c4a37701d08c0837ee4add13fe01d8ca67b4b7b3994d9c
3
+ metadata.gz: 1bbc25a1ed261b5d68955c8e34c0f57fad5e6b4a4f2321dd9353ba097ce9a234
4
+ data.tar.gz: f0d8653f1aa5cef676f1d85493f7be6d9f2eae9f0d0f264924f75020f21fade5
5
5
  SHA512:
6
- metadata.gz: bf4b64bdc3a8d338100e082527bf4733fea449c4976d9830c737ec27ea2eec8d263908b1ec7d662c99f532be980d0386cdef69de0957b8b410cf381202579b96
7
- data.tar.gz: 482264bbd60922c3f3f233057a270a6c2c3acbcb4618a1f8f53f1b1594accf38b4bf59c4a87c362a3cb64ac9eb6907a696cf7ab63d246fd2a770e50022c377f3
6
+ metadata.gz: 64abf557e4e5044dbb1e770299fd95c5908a7a232e91242eca50d24145a87db10b294c10d916e882c116a3697920473295f5dcce7cb1d48a487b1c8464abdbbc
7
+ data.tar.gz: 7900d1773d35e42556cb8cfc008f8925f423bd3d98bfa3f02fe4859e2ebfb180fcbc3eecfe58529c6a5e61d6c494daf801a24aa67eb97406932148295a92926e
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: x64-mingw32
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