Results 148 issues of Tiago

## **BEFORE YOU SUBMIT** please read the following: * [ ] **I'm submitting a bug report** * [ ] **I'm submitting a feature request** * [ x] **I'm submitting a...

enhancement

Step towards #872 Removes report synchronization code into the `parallel` module.

Given the following snippet: ```ruby class A def to_str "bang" end end Regexp.new(A.new) ``` CRuby will return `/bang/`. Truffleruby fails: ``` TruffleRuby doesn't have a case for the org.truffleruby.core.regexp.RegexpNodesFactory$RegexpCompileNodeFactory$RegexpCompileNodeGen node...

compatibility

Hi, The truffleruby build of [rodauth-oauth](https://gitlab.com/honeyryderchuck/rodauth-oauth) started failing out of the blue (I have set up monthly automated builds, this was [the last successful one](https://gitlab.com/honeyryderchuck/rodauth-oauth/-/jobs/1624266723), this was the [first failing...

I'm trying to use this lib for schema validation, and there is this use case where a key needs to be filled with a default, when nothing is passed. I...

feature
unconfirmed

A few methods were missing from the existing signatures for Fiber.

This was missing from the IO module. Couldn't find a less verbose way to set the conversion options. Suggestions welcome.

The [record type](https://github.com/ruby/rbs/blob/master/docs/syntax.md#record-type) definition forces all keys to be passed, whereas in most cases, one already handles the case to a default when one of the record values isn't passed....

I'm having the following error correcting the [folllowing optparse signature](https://github.com/ruby/rbs/blob/master/stdlib/optparse/0/optparse.rbs#L550): ``` - | (String params, Class | Array[String] | Hash[Symbol, untyped] | Regexp obj, ?String desc) ?{ (*untyped) -> untyped...