ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22
@ 2022-08-25 12:39 mame (Yusuke Endoh)
  2022-08-26  4:12 ` [ruby-core:109702] " mame (Yusuke Endoh)
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: mame (Yusuke Endoh) @ 2022-08-25 12:39 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been reported by mame (Yusuke Endoh).

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109702] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
@ 2022-08-26  4:12 ` mame (Yusuke Endoh)
  2022-08-29 13:16 ` [ruby-core:109769] " byroot (Jean Boussier)
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: mame (Yusuke Endoh) @ 2022-08-26  4:12 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by mame (Yusuke Endoh).


* [Feature #18784] `FileUtils.rm_f` and `FileUtils.rm_rf` should not mask exceptions (mame)
  * I changed FileUtils.rm_f/rm_rf so that it raises a SystemCallError but Errno::ENOENT.
  * But it seemed to affect mkmf on Windows. mkmf uses rm_f to delete conftest.exe, but sometime it fails. I don't know why it happens.
  * I concern that this change will make users just ignore exceptions of FileUtils.rm_rf by wrapping `begin .. rescue SystemCallError; end`.
  * This is not what I wanted. Should we revert the change of FileUtils?

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-98928

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109769] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
  2022-08-26  4:12 ` [ruby-core:109702] " mame (Yusuke Endoh)
@ 2022-08-29 13:16 ` byroot (Jean Boussier)
  2022-09-03 17:17 ` [ruby-core:109835] " Eregon (Benoit Daloze)
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: byroot (Jean Boussier) @ 2022-08-29 13:16 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by byroot (Jean Boussier).


- [Feature #18982] Add an `exception: false` argument for Queue#push, Queue#pop, SizedQueue#push and SizedQueue#pop (byroot)
  - The existing exceptions (ThreadError) are a bit awkward to deal with.
  - Queue is often used deep into the stack where exceptions in common cases are fairly costly.
- [Feature #18951] `Object#with` to set and restore attributes around a block (byroot)
  - Works with any public accessor, e.g. `GC.with(stress: true) { do_something }`
  - This is an extremely common pattern, especially in test suites, but is often implemented with subtle bugs.

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99007

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109835] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
  2022-08-26  4:12 ` [ruby-core:109702] " mame (Yusuke Endoh)
  2022-08-29 13:16 ` [ruby-core:109769] " byroot (Jean Boussier)
@ 2022-09-03 17:17 ` Eregon (Benoit Daloze)
  2022-09-08 11:12 ` [ruby-core:109847] " st0012 (Stan Lo)
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Eregon (Benoit Daloze) @ 2022-09-03 17:17 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by Eregon (Benoit Daloze).


* [Feature #11689] Add methods allow us to get visibility from Method and UnboundMethod object. (eregon)
  * I think  we should re-add (undo revert) {Method,UnboundMethod}#{public?,private?,protected?} on master, see https://bugs.ruby-lang.org/issues/11689#note-27
  * Both #18729 and #18751 are fixed, and now Method == method entry, and visibility is an attribute of method entry.
  * Ruby 3.1 already has those method and the fix for #18729 and #18751 was [backported to 3.1](https://bugs.ruby-lang.org/issues/18435#note-25). So if we keep them on master we cause incompatibility and there is no practical issue with those methods anymore.

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99072

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109847] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (2 preceding siblings ...)
  2022-09-03 17:17 ` [ruby-core:109835] " Eregon (Benoit Daloze)
@ 2022-09-08 11:12 ` st0012 (Stan Lo)
  2022-09-11 10:30 ` [ruby-core:109886] " Eregon (Benoit Daloze)
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: st0012 (Stan Lo) @ 2022-09-08 11:12 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by st0012 (Stan Lo).


- [Feature #18996] Proposal: Introduce new APIs to reline for changing dialog UI colours (st0012)
    - `irb`'s autocompletion background can make texts hard to read for some users. 
    - Because the colours are hardcoded in `reline`, users aren't able to change them. So many users need to disable the feature altogether.
    - The APIs proposed in the ticket actually have been implemented by [@pocari](https://github.com/pocari) and me.
    - Since the maintainer @aycabta is not available now, I hope we can decide if the APIs still need any improvement or they are ready for release.


----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99084

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109886] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (3 preceding siblings ...)
  2022-09-08 11:12 ` [ruby-core:109847] " st0012 (Stan Lo)
@ 2022-09-11 10:30 ` Eregon (Benoit Daloze)
  2022-09-14 20:22 ` [ruby-core:109894] " jeremyevans0 (Jeremy Evans)
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Eregon (Benoit Daloze) @ 2022-09-11 10:30 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by Eregon (Benoit Daloze).


* [Feature #18798] `UnboundMethod#==` with inherited classes (eregon)
  * OK to change UnboundMethod#== to check if same method definition (and ignore from which class instance_method was used on)?
  * If not, OK to add `{Method,UnboundMethod}#same_definition?(other)`?

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99127

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109894] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (4 preceding siblings ...)
  2022-09-11 10:30 ` [ruby-core:109886] " Eregon (Benoit Daloze)
@ 2022-09-14 20:22 ` jeremyevans0 (Jeremy Evans)
  2022-09-15  3:26 ` [ruby-core:109899] " shioyama (Chris Salzberg)
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: jeremyevans0 (Jeremy Evans) @ 2022-09-14 20:22 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by jeremyevans0 (Jeremy Evans).


* [Bug #18960] Module#using raises RuntimeError when called at toplevel from wrapped script (jeremyevans0)
  * Do we want to support this?  I think since #using is permitted at top level and inside a module, we should.
* [Bug #18919] Ractor: can't share #Method objects (jeremyevans0)
  * Is this a bug? Ractor cannot share most objects, but some procs are sharable.
  * If not a bug, should it be switched to feature request?
* [Bug #18878] parse.y: Foo::Bar {} is inconsistently rejected (jeremyevans0)
  * This is currently invalid syntax, should we try to support it?
  * If so, do we consider this a bug or a feature request?
  * I tried to support it a couple weeks ago, but all my attempts ended in reduce/reduce conflicts.

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99137

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109899] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (5 preceding siblings ...)
  2022-09-14 20:22 ` [ruby-core:109894] " jeremyevans0 (Jeremy Evans)
@ 2022-09-15  3:26 ` shioyama (Chris Salzberg)
  2022-09-15 13:36 ` [ruby-core:109903] " peterzhu2118 (Peter Zhu)
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: shioyama (Chris Salzberg) @ 2022-09-15  3:26 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by shioyama (Chris Salzberg).


- [Bug #18960] @jeremyevans0 mentioned this, but I'd also like to disuss this (I submitted the bug + fix)
- Related to that bug, discuss POC for import modules described in https://bugs.ruby-lang.org/issues/10320#note-13

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99142

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109903] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (6 preceding siblings ...)
  2022-09-15  3:26 ` [ruby-core:109899] " shioyama (Chris Salzberg)
@ 2022-09-15 13:36 ` peterzhu2118 (Peter Zhu)
  2022-09-16 10:25 ` [ruby-core:109917] " byroot (Jean Boussier)
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: peterzhu2118 (Peter Zhu) @ 2022-09-15 13:36 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by peterzhu2118 (Peter Zhu).


- [Bug #18978] Unexpected behaviour in Time.utc and Time.local when 8 arguments are passed in (peterzhu2118)
    - Passing 8 arguments causes both the 7th (milliseconds) and 8th arguments to be ignored.
    - The behaviour is undocumented, so it is inconsistent between various Ruby implementations.
    - Proposed fix raises an ArgumentError when 8 arguments are passed in (this is the behaviour when 9 arguments are passed in).
    - Proposed PR: https://github.com/ruby/ruby/pull/6281

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99146

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109917] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (7 preceding siblings ...)
  2022-09-15 13:36 ` [ruby-core:109903] " peterzhu2118 (Peter Zhu)
@ 2022-09-16 10:25 ` byroot (Jean Boussier)
  2022-09-19 16:27 ` [ruby-core:109958] " tenderlovemaking (Aaron Patterson)
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: byroot (Jean Boussier) @ 2022-09-16 10:25 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by byroot (Jean Boussier).


- [Feature #18885] End of boot advisory API (byroot)
  - The general concept was accepted, but it need a proper name.
  - Suggestions:
   - `Kernel.booted` / `Kernel.application_booted` / `Kernel.code_loaded` / `Kernel.startup_done`
   - `ObjectSpace.loaded` / `ObjectSpace.optimize`
  - The suggestions try to describe an "event" or point in time, more than which optimizations are being performed.
  - This is because the actual optimizations might change over time or be different on other implementations.
  - I'd like to implement the constant cache pre-warming soon, so having an accepted name for it would be very helpful.

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99164

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109958] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (8 preceding siblings ...)
  2022-09-16 10:25 ` [ruby-core:109917] " byroot (Jean Boussier)
@ 2022-09-19 16:27 ` tenderlovemaking (Aaron Patterson)
  2022-09-20 22:19 ` [ruby-core:109966] " ioquatix (Samuel Williams)
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: tenderlovemaking (Aaron Patterson) @ 2022-09-19 16:27 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by tenderlovemaking (Aaron Patterson).


* [Feature #18776] Object shapes as new caching system
  * YARV interpreter benchmarks are similar speed or faster
  * Memory increase is low
  * Opens door for more optimizations

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99208

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109966] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (9 preceding siblings ...)
  2022-09-19 16:27 ` [ruby-core:109958] " tenderlovemaking (Aaron Patterson)
@ 2022-09-20 22:19 ` ioquatix (Samuel Williams)
  2022-09-21 12:31 ` [ruby-core:109978] " yui-knk (Kaneko Yuichiro)
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ioquatix (Samuel Williams) @ 2022-09-20 22:19 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by ioquatix (Samuel Williams).


- [Feature #19008] Introduce coverage support for `eval`.
  - Working implementation.
  - Can introduce some challenges for existing code - same challenges as debug gem - accurate line information for `eval` must be given.
  - Useful for computing template coverage.
- [Feature #18411] Introduce `Fiber.blocking` for disabling the scheduler (efficiently).
  - Useful for writing pure Ruby schedulers.
- [Feature #18455] `IO#close` has poor performance and difficult to understand semantics.
  - We need to fix implementation of `IO#close` which is O(number of blocking operations).
  - We need to hide implementation of `struct rb_io_t` because the internal implementation details are leaking into public interface (e.g. `ccan_list`).
- [Feature #18630] Introduce general `IO#timeout` and `IO#timeout=` for blocking operations.
  - We can now support generally blocking and internally non-blocking operations (i.e. fiber scheduler).
  - Safer network I/O.

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99216

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:109978] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (10 preceding siblings ...)
  2022-09-20 22:19 ` [ruby-core:109966] " ioquatix (Samuel Williams)
@ 2022-09-21 12:31 ` yui-knk (Kaneko Yuichiro)
  2022-09-22 22:36 ` [ruby-core:110009] " mame (Yusuke Endoh)
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: yui-knk (Kaneko Yuichiro) @ 2022-09-21 12:31 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by yui-knk (Kaneko Yuichiro).


* [Feature #19013] Error Tolerant Parser
  * I want to get feedback for the direction and other use cases.

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99227

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:110009] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (11 preceding siblings ...)
  2022-09-21 12:31 ` [ruby-core:109978] " yui-knk (Kaneko Yuichiro)
@ 2022-09-22 22:36 ` mame (Yusuke Endoh)
  2022-09-26 22:04 ` [ruby-core:110093] " pkubaj (Piotr Kubaj)
  2022-10-06  7:07 ` [ruby-core:110202] " hsbt (Hiroshi SHIBATA)
  14 siblings, 0 replies; 16+ messages in thread
From: mame (Yusuke Endoh) @ 2022-09-22 22:36 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by mame (Yusuke Endoh).


We could not discuss all agenda items in time. We will have an extra meeting at 6th Oct.

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99260

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:110093] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (12 preceding siblings ...)
  2022-09-22 22:36 ` [ruby-core:110009] " mame (Yusuke Endoh)
@ 2022-09-26 22:04 ` pkubaj (Piotr Kubaj)
  2022-10-06  7:07 ` [ruby-core:110202] " hsbt (Hiroshi SHIBATA)
  14 siblings, 0 replies; 16+ messages in thread
From: pkubaj (Piotr Kubaj) @ 2022-09-26 22:04 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by pkubaj (Piotr Kubaj).


* [Feature #19022] Use __builtin_ppc_get_timebase on POWER with clang (pkubaj)
  * A simple change that allows run performance improvement

* [Feature #19023] Enable riscv64 coroutines on riscv64-freebsd, arm32 on arm*-freebsd and ppc on powerpc-freebsd (pkubaj)
  * Passes make test



----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99348

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [ruby-core:110202] [Ruby master Misc#18977] DevMeeting-2022-09-22
  2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
                   ` (13 preceding siblings ...)
  2022-09-26 22:04 ` [ruby-core:110093] " pkubaj (Piotr Kubaj)
@ 2022-10-06  7:07 ` hsbt (Hiroshi SHIBATA)
  14 siblings, 0 replies; 16+ messages in thread
From: hsbt (Hiroshi SHIBATA) @ 2022-10-06  7:07 UTC (permalink / raw)
  To: ruby-core

Issue #18977 has been updated by hsbt (Hiroshi SHIBATA).


* [Bug #19016] syntax_suggest is not working with Ruby 3.2.0-preview2
  * What's blocker now?

----------------------------------------
Misc #18977: DevMeeting-2022-09-22
https://bugs.ruby-lang.org/issues/18977#change-99484

* Author: mame (Yusuke Endoh)
* Status: Open
* Priority: Normal
----------------------------------------
# The next dev meeting

**Date: 2022/09/22 13:00-17:00** (JST)
Log: *TBD*

- Dev meeting *IS NOT* a decision-making place. All decisions should be done at the bug tracker.
- Dev meeting is a place we can ask Matz, nobu, nurse and other developers directly.
- Matz is a very busy person. Take this opportunity to ask him. If you can not attend, other attendees can ask instead of you (if attendees can understand your issue).
- We will write a record of the discussion in the file or to each ticket in English.
- All activities are best-effort (keep in mind that most of us are volunteer developers).
- The date, time and place of the meeting are scheduled according to when/where we can reserve Matz's time.
- *DO NOT* discuss then on this ticket, please.

# Call for agenda items

If you have a ticket that you want matz and committers to discuss, please post it into this ticket in the following format:

```
* [Ticket ref] Ticket title (your name)
  * Comment (A summary of the ticket, why you put this ticket here, what point should be discussed, etc.)
```

Example:

```
* [Feature #14609] `Kernel#p` without args shows the receiver (ko1)
  * I feel this feature is very useful and some people say :+1: so let discuss this feature.
```

- It is recommended to add a comment by 2022/09/19. We hold a preparatory meeting to create an agenda a few days before the dev-meeting.
- The format is strict.  We'll use [this script to automatically create an markdown-style agenda](https://gist.github.com/mame/b0390509ce1491b43610b9ebb665eb86).  We may ignore a comment that does not follow the format.
- Your comment is mandatory. We cannot read all discussion of the ticket in a limited time. We appreciate it if you could write a short summary and update from a previous discussion.




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2022-10-06  7:07 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-25 12:39 [ruby-core:109689] [Ruby master Misc#18977] DevMeeting-2022-09-22 mame (Yusuke Endoh)
2022-08-26  4:12 ` [ruby-core:109702] " mame (Yusuke Endoh)
2022-08-29 13:16 ` [ruby-core:109769] " byroot (Jean Boussier)
2022-09-03 17:17 ` [ruby-core:109835] " Eregon (Benoit Daloze)
2022-09-08 11:12 ` [ruby-core:109847] " st0012 (Stan Lo)
2022-09-11 10:30 ` [ruby-core:109886] " Eregon (Benoit Daloze)
2022-09-14 20:22 ` [ruby-core:109894] " jeremyevans0 (Jeremy Evans)
2022-09-15  3:26 ` [ruby-core:109899] " shioyama (Chris Salzberg)
2022-09-15 13:36 ` [ruby-core:109903] " peterzhu2118 (Peter Zhu)
2022-09-16 10:25 ` [ruby-core:109917] " byroot (Jean Boussier)
2022-09-19 16:27 ` [ruby-core:109958] " tenderlovemaking (Aaron Patterson)
2022-09-20 22:19 ` [ruby-core:109966] " ioquatix (Samuel Williams)
2022-09-21 12:31 ` [ruby-core:109978] " yui-knk (Kaneko Yuichiro)
2022-09-22 22:36 ` [ruby-core:110009] " mame (Yusuke Endoh)
2022-09-26 22:04 ` [ruby-core:110093] " pkubaj (Piotr Kubaj)
2022-10-06  7:07 ` [ruby-core:110202] " hsbt (Hiroshi SHIBATA)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).