Tim Craft
Tim Craft
From [the spec](https://github.com/Nexmo/client-library-specification/blob/master/SPECIFICATION.md#authenticating-requests): SHOULD allow a signature secret (used for some API requests, and to validate WebHook signatures) Using the signature secret to sign API requests is not yet supported.
Attempting to load the socket library on macOS fails with a number of undeclared identifier errors: $ bin/natalie -e "require 'socket'" /var/folders/wc/ng7w8yms69j6vpvqck4x2shh0000gn/T/natalie.cpp20221003-18022-x9mqwj:1181:81: error: use of undeclared identifier 'AF_AX25' auto const_set75...
This implements support for parsing multipart requests that contain multiple files with the same name. From [RFC7578 Section 4.3](https://www.rfc-editor.org/rfc/rfc7578#section-4.3): > To match widely deployed implementations, multiple files MUST be sent...
Versions 3.6.0 and later include #1082 which removes code that checks if `window` is defined. This breaks in headless environments which don't have `window` defined, for example: ``` $ bun...
This adds a Net::HTTP#ssl_options attribute for setting options on the underlying `OpenSSL::SSL::SSLContext` instance, allowing SSL options to be set per connection instead of globally. There was a feature request for...
This adds a Net::HTTP#security_level attribute which sets the corresponding OpenSSL::SSL::SSLContext#security_level attribute. There are a few open issues requesting this feature: * https://github.com/ruby/net-http/issues/29 * https://bugs.ruby-lang.org/issues/18418 * https://bugs.ruby-lang.org/issues/19641