aws-crt 0.1.6-aarch64-linux → 0.1.8-aarch64-linux

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: 136d082106b04103a43074269d3e5feb2c34eb3fc26219c68426ef15adc3e579
4
- data.tar.gz: 70e201d190c212d27b42e8b11b98e896e4c1b9c1c7cec65ca06174b14d54354b
3
+ metadata.gz: 266c025e4946400e980796caefa0d36b03d00fe9464846536fb0a37eb11ce457
4
+ data.tar.gz: 2423d4a39f74ae92290478bcea0eb13ebc20848dd5f7f3d8eb7343beeec0732e
5
5
  SHA512:
6
- metadata.gz: d73e8e01c7ba97daf2bf8e5e5e8d7dbdc8e55d8bbfacbc9774de78c7cdd99cbfcf5cb053bbf1c9ed44f2e01f34460649a3a552b523822e260446b63adbbea0b7
7
- data.tar.gz: f5c57a66a168f7133f9222932521f6c18d73edf57d5cb46294b57f000ec8e8a9b292acf001f9b28a515ca68ae89a767de86a5b5f99c0afddd4635ac266e15ec6
6
+ metadata.gz: 4f189b13dcd652e26a25b35b545c86d93beec176e98d116dcf5140ca5d10f5fe47164b1855f6c914edf19573209e94084874f1abb6d0c6d63ffd5739dcf59fed
7
+ data.tar.gz: 30b279bc50a26ab4c701003007c1c18032138d327ada25810d2ea8424837e3f2ce4b143267222cbef9256d7c12f235d8a9c2709339334ffeafa7cc96ea81897f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 0.1.8 (2023-03-28)
5
+ ------------------
6
+
7
+ * Issue - fix `warning: method redefined` warnings.
8
+
9
+ 0.1.7 (2023-02-03)
10
+ ------------------
11
+
12
+ * Issue - Update to the latest aws-crt-ffi.
13
+ * Issue - Add support for overriding crt_bin_dir with `AWS_CRT_RUBY_BIN_DIR`.
14
+
4
15
  0.1.6 (2022-08-12)
5
16
  ------------------
6
17
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.6
1
+ 0.1.8
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
@@ -84,9 +84,10 @@ module Aws
84
84
  end
85
85
 
86
86
  bang_name = "#{ruby_name}!"
87
+ no_raise_name = "#{ruby_name}_no_raise"
87
88
 
88
- super(ruby_name, c_name, params, returns, options)
89
- alias_method(bang_name, ruby_name)
89
+ super(no_raise_name, c_name, params, returns, options)
90
+ alias_method(bang_name, no_raise_name)
90
91
 
91
92
  define_method(ruby_name) do |*args, &block|
92
93
  res = public_send(bang_name, *args, &block)
@@ -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.8
5
5
  platform: aarch64-linux
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-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi