Eregon (Benoit Daloze)
- Login: Eregon
- Registered on: 07/30/2009
- Last sign in: 12/02/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 1 | 61 | 62 |
| Reported issues | 22 | 192 | 214 |
Projects
| Project | Roles | Registered on |
|---|---|---|
| Ruby | Committer | 08/02/2012 |
Activity
Today
-
03:22 PM Ruby Misc #21689: DevMeeting-2025-12-11
- * [Feature #8948] Frozen regex (eregon)
* This is to make all Regexps frozen and not just literals.
* I made a PR, it passes CI: https://github.com/ruby/ruby/pull/14547
* Is it OK to merge it for Ruby 4.0? -
03:20 PM Ruby Feature #8948: Frozen regex
- PR to make all Regexps frozen and not just literals: https://github.com/ruby/ruby/pull/14547
Is it OK to merge it for Ruby 4.0?
12/06/2025
-
10:11 AM Ruby Revision aae85926 (git): [ruby/timeout] Test that Timeout does not expose extra constants
- https://github.com/ruby/timeout/commit/4de4b4759c
12/05/2025
-
10:09 PM Ruby Revision 65995c22 (git): [ruby/timeout] Exclude constantly-failing test on x86_64-darwin
- * https://github.com/ruby/ruby-dev-builder/actions/runs/19973218359/job/57293388626
https://github.com/ruby/timeout/commit/45816b1b26 -
06:32 PM Ruby Revision 00b91c72 (git): [ruby/timeout] Simplify logic to make GET_TIME shareable
- https://github.com/ruby/timeout/commit/281b2507e7
-
06:32 PM Ruby Revision a523e9d8 (git): [ruby/timeout] Minor tweaks
- https://github.com/ruby/timeout/commit/daab9a2193
-
06:32 PM Ruby Revision dc406af9 (git): [ruby/timeout] Fix condition and fix test to catch that broken condition
- https://github.com/ruby/timeout/commit/82fb6f6925
-
06:32 PM Ruby Revision 3e189ddb (git): [ruby/timeout] Fix logic for Ractor support
- * Fix indentation to stay a multiple of 2 spaces.
https://github.com/ruby/timeout/commit/a1d784cb66 -
11:35 AM Ruby Revision 95ea3bd5 (git): [ruby/timeout] Only the timeout method should be public on the Timeout module
- https://github.com/ruby/timeout/commit/cd51eac3ca
12/03/2025
-
09:05 PM Ruby Feature #21701: Enumerator.produce accepts an optional `size` keyword argument
- Ah, I missed that `Enumerator.produce(...).size` returns `Infinity`.
I think that's the problem, it should return `nil` because it doesn't know if infinite or not, as you say in many cases it is not infinite.
If that's done, I think ...