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.
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.
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.
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. So if we keep them removed for 3.2 we cause incompatibility and there is no practical issue with those methods anymore.
[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 and me.
Since the maintainer @aycabta (aycabta .) is not available now, I hope we can decide if the APIs still need any improvement or they are ready for release.
[Feature #19010] Follow up of #18996: Support changing irb's autocompletion background (st0012)
If the above or similar reline APIs are introduced, I want to support dark/bright themes in irb (screenshots are included in the ticket)
The default will be dark theme. I don't want to add more themes for now. So it can be toggled to bright theme with a boolean config.
To customize more, irb can take and pass per-color configurations to reline too.
[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 yes, what about UnboundMethod#eql??
If not, OK to add {Method,UnboundMethod}#same_definition?(other)?