Tiago
                                            Tiago
                                        
                                    I'm defining representers in the nested-plural way. So I have the following representer: ```ruby # app/concepts/users/representer/user_representer.rb class UserRepresenter < Representable::Decorator property :name collection :tax_residencies, decorator: TaxResidencyRepresenter end # app/concepts/tax_residencies/representer/tax_residency_representer.rb class...
Addresses https://bugs.ruby-lang.org/issues/20049
### PR checklist - [x] Read the [contribution guidelines](https://github.com/swagger-api/swagger-codegen/blob/master/CONTRIBUTING.md). - [x] Ran the shell script under `./bin/` to update Petstore sample so that CIs can verify the change. (For instance,...
**Environment Information** Provide at least: * JRuby: 9.4.5.0 **Expected Behavior** A simple udp-based loop server using `Socket.udp_server_loop` fails under latest jruby, [due to the implementation using `UDPSocket#recvmsg_nonblock`](https://github.com/jruby/jruby/blob/master/lib/ruby/stdlib/socket.rb#L981C6-L981C6). I have a...
👋 I'd like to propose switching the HTTP backend to using [httpx](https://gitlab.com/os85/httpx). I was having a look at the outstanding issues, and it seems that most of them are related...
**Describe the idea** Same as sidekiq and delayed_job: provide an integration for [shoryuken](https://github.com/ruby-shoryuken/shoryuken), so that errors are OOTB reported. **Why do you think it's beneficial to most of the users**...
In the [httpx test suite](https://gitlab.com/os85/httpx/-/jobs/5212625012), I've been monitoring this truffleruby issue for a while, which still manifests after the upgrade to 23.1.0. FWIW I was able to reduce it to...
### Describe the feature The APIs for request context are missing a way to calculate the final payload size for a request. Currently, in the case of SNS publish of...
I'm adding gem_rbs_collection to this library integrating with datadog. All is well, until I run `steep check`, and I get error messages coming from datadog's signatures: ``` # example ../../.gem/ruby/3.2.2/gems/datadog-ci-0.6.0/sig/datadog/ci/contrib/rspec/example.rbs:8:12:...
Currently, the usage of `singleton` seems to be limited to the following usages: ```ruby # foo accepts the FooClass as argument, or any subclass of it # rb: foo(FooClass) def...