Skip to content

Commit f945c10

Browse files
committed
Rubocop A
1 parent 95911ae commit f945c10

File tree

7 files changed

+10
-0
lines changed

7 files changed

+10
-0
lines changed

gems/aws-crt/lib/aws-crt/auth/credentials.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module Auth
66
# CRT CredentialOptions
77
class CredentialsOptions
88
include Aws::Crt::ManagedNative
9+
910
native_destroy Aws::Crt::Native.method(:credentials_options_release)
1011

1112
UINT64_MAX = 18_446_744_073_709_551_615
@@ -52,6 +53,7 @@ def initialize(access_key_id, secret_access_key,
5253
# Utility class for Credentials.
5354
class Credentials
5455
include Aws::Crt::ManagedNative
56+
5557
native_destroy Aws::Crt::Native.method(:credentials_release)
5658

5759
# @param [String] access_key_id

gems/aws-crt/lib/aws-crt/auth/signable.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module Auth
66
# Signing Config
77
class Signable
88
include Aws::Crt::ManagedNative
9+
910
native_destroy Aws::Crt::Native.method(:signable_release)
1011

1112
# @param [Http::Message] http_request

gems/aws-crt/lib/aws-crt/auth/signing_config.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ module Auth
99
# Signing Config
1010
class SigningConfig
1111
include Aws::Crt::ManagedNative
12+
1213
native_destroy Aws::Crt::Native.method(:signing_config_aws_release)
1314

1415
# @param [Hash] options

gems/aws-crt/lib/aws-crt/auth/static_credentials_provider.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module Auth
66
# CRT CredentialOptions
77
class StaticCredentialsProviderOptions
88
include Aws::Crt::ManagedNative
9+
910
native_destroy Aws::Crt::Native.method(:credentials_provider_static_options_release)
1011

1112
# @param [String] access_key_id
@@ -44,6 +45,7 @@ def initialize(access_key_id, secret_access_key,
4445
# Utility class for Credentials.
4546
class StaticCredentialsProvider
4647
include Aws::Crt::ManagedNative
48+
4749
native_destroy Aws::Crt::Native.method(:credentials_provider_release)
4850

4951
# @param [String] access_key_id

gems/aws-crt/lib/aws-crt/http/headers.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module Http
77
# HTTP Headers
88
class Headers
99
include Aws::Crt::ManagedNative
10+
1011
native_destroy Aws::Crt::Native.method(
1112
:http_headers_release
1213
)

gems/aws-crt/lib/aws-crt/http/message.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module Http
77
# HTTP Message (request)
88
class Message
99
include Aws::Crt::ManagedNative
10+
1011
native_destroy Aws::Crt::Native.method(
1112
:http_message_release
1213
)

gems/aws-crt/lib/aws-crt/io/event_loop_group.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module IO
77
# Options for an EventLoopGroup
88
class EventLoopGroupOptions
99
include Aws::Crt::ManagedNative
10+
1011
native_destroy Aws::Crt::Native.method(
1112
:event_loop_group_options_release
1213
)
@@ -35,6 +36,7 @@ def initialize(max_threads = nil)
3536
# for an event-loop to use.
3637
class EventLoopGroup
3738
include Aws::Crt::ManagedNative
39+
3840
native_destroy Aws::Crt::Native.method(:event_loop_group_release)
3941

4042
def initialize(max_threads = nil)

0 commit comments

Comments
 (0)