General

Profile

tenderlovemaking (Aaron Patterson)

  • Login: tenderlovemaking
  • Email: [email protected]
  • Registered on: 07/09/2008
  • Last sign in: 05/28/2025

Issues

open closed Total
Assigned issues 43 209 252
Reported issues 31 124 155

Projects

Project Roles Registered on
Ruby Committer 11/13/2009

Like

Activity

06/05/2025

05:05 PM Ruby Bug #21396: Set#initialize should call Set#add on items passed in
ko1 (Koichi Sasada) wrote in #note-4:
> How about to redfine `initialize` on subclass of `Set` to call `#add`?
I ...
tenderlovemaking (Aaron Patterson)

06/04/2025

07:48 PM Ruby Bug #21396: Set#initialize should call Set#add on items passed in
jeremyevans0 (Jeremy Evans) wrote in #note-2:
> This is not a bug, IMO. Using underlying functions instead of calli...
tenderlovemaking (Aaron Patterson)
07:31 PM Ruby Bug #21396 (Open): Set#initialize should call Set#add on items passed in
```ruby
class Foo < Set
def add(item) = super(item.bytesize)
end
x = Foo.new(["foo"])
p x
p x.include?(3)
...
tenderlovemaking (Aaron Patterson)

05/28/2025

07:23 PM Ruby Misc #21369: Propose Max Bernstein (@tekknolagi) as a core committer
+1
I'm working closely with Max and I can recommend him to join the team.
tenderlovemaking (Aaron Patterson)

05/23/2025

06:43 PM Ruby Bug #21363: `Namespace.current` should always return the Namespace in which it was defined
To be more specific, given this program:
```ruby
File.binwrite("ns.rb", <<-RUBY)
# namespace 3
module M
de...
tenderlovemaking (Aaron Patterson)
05:12 AM Ruby Revision e3205473 (git): Remove assertion on field in `class_duplicate_iclass_classext`
`ext` is newly allocated so it shouldn't need an assertion. The class
ext (which is always from the module) that we'r...
tenderlovemaking (Aaron Patterson)

05/22/2025

11:28 PM Ruby Feature #21365 (Open): Add `Namespace#eval`
I would like a way to eval code on to a `Namespace` object. Could we add an eval method that _doesn't_ take a binding... tenderlovemaking (Aaron Patterson)
11:23 PM Ruby Bug #21364 (Open): Constant lookup in namespaces should be consistent
This might be related to #21363, but I'm not sure.
I expect that a top level `Bar` constant should have the same v...
tenderlovemaking (Aaron Patterson)
11:17 PM Ruby Bug #21363 (Open): `Namespace.current` should always return the Namespace in which it was defined
I think `Namespace.current` should always return the namespace in which it was defined. Here is an example to demons... tenderlovemaking (Aaron Patterson)

05/21/2025

05:27 PM Ruby Revision ef935705 (git): Use shape_id for determining "too complex"
Using `rb_shape_obj_too_complex_p` looks up the shape, but we already
have the shape id. This avoids looking up the s...
tenderlovemaking (Aaron Patterson)

Also available in: Atom

OSZAR »