Tiago
Tiago
* rbs: 3.1.3 * ruby: 3.2.2 i'm finding an issue typing the following structure: ```ruby class A def initialize(a, b) @a = a @b = b end end class B...
Currently, it's impossible to use `Float::Infinity` as a literal in signatures: ```rbs def initialize: (Integer | Float::Infinity bytesize) -> void #=> RuntimeError: Neutered Exception RBS::Test::Tester::TypeError: TypeError: [MyClass#initialize] ArgumentTypeError: expected `::Integer...
this type of extension of type definitions isn't being done by steep on type analysis via `steep check`. ```rbs # given class A def foo: () -> void end module...
Given an array `arr` typed as `Array[Integer | :sym]`, given a call such as `arr.delete(:sym)`, the type should be updated to `Array[Integer]`, similar to the type narrowing performed by `.nil?`...
While they should already "just work", the spec still lacks definition about what their special meaning. This is in contrast to [PEP-0333](https://peps.python.org/pep-0333/), where it is clearly stated that these belong...
**Is your feature request related to a problem? Please describe.** The problem I'm having relates to a set of concurrent operations (under a given datadog trace) which pipe a data...
This is in reference to this action here: https://github.com/DataDog/dd-trace-rb/blob/b69dca3532453e99b5bd26183bf89bedeab9a8aa/lib/ddtrace/contrib/rails/action_controller_patch.rb . I'm encountering this inconsistency, at least according to my expectation, where the action controller tracer only pertains to the action...
To open the discussion on a solution approach for #731 . A (relatively) conservative way to solve having "IO duck types" being passed to an SSLSocket, would be to use...
Hi, I'm implementing [HTTPS connect proxy support](https://github.com/HoneyryderChuck/httpx/issues/42) in [httpx](https://honeyryderchuck.gitlab.io/httpx/wiki/Proxy.html), which is supposed to connect via SSL to the proxy before sending the CONNECT request and renegotiate the SSL connection. This...
Requests aren't passing via serverless-offline due to: ```ruby $app ||= Rack::Builder.parse_file($config['config_path'] || 'config.ru').first # undefined method `first' for #