ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:103026] [Ruby master Feature#17749] Const source location without name
@ 2021-03-25 23:29 tenderlove
  2021-03-26  0:12 ` [ruby-core:103027] " dylan.smith
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: tenderlove @ 2021-03-25 23:29 UTC (permalink / raw)
  To: ruby-core

Issue #17749 has been reported by tenderlovemaking (Aaron Patterson).

----------------------------------------
Feature #17749: Const source location without name
https://bugs.ruby-lang.org/issues/17749

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Priority: Normal
----------------------------------------
Hi,

I would like to be able to ask a class or module what its source location is without knowing the name.  For example, I want to do this:

```ruby
module A
  class B
  end
end

p A::B.const_source_location
```

In other works `A::B.const_source_location` would be equivalent to `A.const_source_location(:B)`.

The reason I want to do this is because sometimes it is very difficult to get the name of a constant, and sometimes I don't have access to the constant that "encloses" the class or module.

One example:

```ruby
ObjectSpace.each_object(Class) do |k|
  p k.const_source_location
end
```

In this case I have class objects, but I can't tell what constant `k` was defined *inside* of.  Also I can't trust the "name" method on `k` because sometimes it's not the default method (of course I could work around that, but it's not fun).

I've attached a patch that implements the feature, and there is a PR [here](https://github.com/ruby/ruby/pull/4324)

Side note: I think I would like "source_location" better than `const_source_location`, but I wanted to just file a feature request so we could talk about the feature in general.

---Files--------------------------------
0001-Add-constant-location-information-to-classes.patch (5.34 KB)


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

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

* [ruby-core:103027] [Ruby master Feature#17749] Const source location without name
  2021-03-25 23:29 [ruby-core:103026] [Ruby master Feature#17749] Const source location without name tenderlove
@ 2021-03-26  0:12 ` dylan.smith
  2021-03-26  2:01 ` [ruby-core:103028] " shevegen
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: dylan.smith @ 2021-03-26  0:12 UTC (permalink / raw)
  To: ruby-core

Issue #17749 has been updated by dylants (Dylan Thacker-Smith).


I agree that `source_location` would be better for this new feature, since it is referring to the receiver of the call.  `const_source_location` makes sense for the existing method, since it is referring to the source location of something else, a nested constant.  So I think you should make a new `source_location` method rather than trying to combine them.

----------------------------------------
Feature #17749: Const source location without name
https://bugs.ruby-lang.org/issues/17749#change-91091

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Priority: Normal
----------------------------------------
Hi,

I would like to be able to ask a class or module what its source location is without knowing the name.  For example, I want to do this:

```ruby
module A
  class B
  end
end

p A::B.const_source_location
```

In other works `A::B.const_source_location` would be equivalent to `A.const_source_location(:B)`.

The reason I want to do this is because sometimes it is very difficult to get the name of a constant, and sometimes I don't have access to the constant that "encloses" the class or module.

One example:

```ruby
ObjectSpace.each_object(Class) do |k|
  p k.const_source_location
end
```

In this case I have class objects, but I can't tell what constant `k` was defined *inside* of.  Also I can't trust the "name" method on `k` because sometimes it's not the default method (of course I could work around that, but it's not fun).

I've attached a patch that implements the feature, and there is a PR [here](https://github.com/ruby/ruby/pull/4324)

Side note: I think I would like "source_location" better than `const_source_location`, but I wanted to just file a feature request so we could talk about the feature in general.

---Files--------------------------------
0001-Add-constant-location-information-to-classes.patch (5.34 KB)


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

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

* [ruby-core:103028] [Ruby master Feature#17749] Const source location without name
  2021-03-25 23:29 [ruby-core:103026] [Ruby master Feature#17749] Const source location without name tenderlove
  2021-03-26  0:12 ` [ruby-core:103027] " dylan.smith
@ 2021-03-26  2:01 ` shevegen
  2021-03-26  6:57 ` [ruby-core:103034] " sawadatsuyoshi
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: shevegen @ 2021-03-26  2:01 UTC (permalink / raw)
  To: ruby-core

Issue #17749 has been updated by shevegen (Robert A. Heiler).


Personally I agree with Aaron's use case or the general potential usefulness
of being able to query const_source_location where Aaron's suggestion is a 
simplification over A::B (because the ruby user no longer HAS to know that
specific name, since the ruby user can just call a method instead, in this
case simply **.const_source_location()** ); and I love introspection anyway, so +1.

To the comment about the **name** (s): .source_location is in general better
than .const_source_location, in my opinion, for **two reasons** :

(1) it's shorter. :) We all like being concise ... two words are better than
three words most of the time. (One word may be even better but we often have
clashes with other names/methods, so two words are a bit better in these
cases.)

(2) even aside from (1), I believe .source_location is better as a name from
a design point of view. While Dylan reasoned that **.const_source_location()** makes
more sense, IMO we could actually go the other approach and say "ruby, I don't
quite care if it is a constant, or a method, or a class, or anything,
I just want to query the source_location to it". So I think it depends on
the point of view you have for the name. In my opinion, omitting "const_"
would be perfectly fine; also I struggle with things such as "when to use
class_eval or instance_eval" so I am all for simpler names in general. ;)

Now we do have Method#source_location but I think and also const_source_location
as well - but I think it would be simpler to "unify" towards one general name,
no matter what that name may be, if we look at it from the point of view of
"how ruby users may want to use the feature". So from that point of view, 
from a ruby user perspective, I think it would be better to omit "const_"
completely. But this is quite secondary; IMO the use case described makes
sense.

----------------------------------------
Feature #17749: Const source location without name
https://bugs.ruby-lang.org/issues/17749#change-91092

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Priority: Normal
----------------------------------------
Hi,

I would like to be able to ask a class or module what its source location is without knowing the name.  For example, I want to do this:

```ruby
module A
  class B
  end
end

p A::B.const_source_location
```

In other works `A::B.const_source_location` would be equivalent to `A.const_source_location(:B)`.

The reason I want to do this is because sometimes it is very difficult to get the name of a constant, and sometimes I don't have access to the constant that "encloses" the class or module.

One example:

```ruby
ObjectSpace.each_object(Class) do |k|
  p k.const_source_location
end
```

In this case I have class objects, but I can't tell what constant `k` was defined *inside* of.  Also I can't trust the "name" method on `k` because sometimes it's not the default method (of course I could work around that, but it's not fun).

I've attached a patch that implements the feature, and there is a PR [here](https://github.com/ruby/ruby/pull/4324)

Side note: I think I would like "source_location" better than `const_source_location`, but I wanted to just file a feature request so we could talk about the feature in general.

---Files--------------------------------
0001-Add-constant-location-information-to-classes.patch (5.34 KB)


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

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

* [ruby-core:103034] [Ruby master Feature#17749] Const source location without name
  2021-03-25 23:29 [ruby-core:103026] [Ruby master Feature#17749] Const source location without name tenderlove
  2021-03-26  0:12 ` [ruby-core:103027] " dylan.smith
  2021-03-26  2:01 ` [ruby-core:103028] " shevegen
@ 2021-03-26  6:57 ` sawadatsuyoshi
  2021-03-26 16:09 ` [ruby-core:103039] " tenderlove
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: sawadatsuyoshi @ 2021-03-26  6:57 UTC (permalink / raw)
  To: ruby-core

Issue #17749 has been updated by sawa (Tsuyoshi Sawada).


I also think that a method name other than `const_source_location` should be used for this feature because this feature has nothing to do with constants. Module are not necessarily constants, and constants are not necessarily modules.

----------------------------------------
Feature #17749: Const source location without name
https://bugs.ruby-lang.org/issues/17749#change-91097

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Priority: Normal
----------------------------------------
Hi,

I would like to be able to ask a class or module what its source location is without knowing the name.  For example, I want to do this:

```ruby
module A
  class B
  end
end

p A::B.const_source_location
```

In other works `A::B.const_source_location` would be equivalent to `A.const_source_location(:B)`.

The reason I want to do this is because sometimes it is very difficult to get the name of a constant, and sometimes I don't have access to the constant that "encloses" the class or module.

One example:

```ruby
ObjectSpace.each_object(Class) do |k|
  p k.const_source_location
end
```

In this case I have class objects, but I can't tell what constant `k` was defined *inside* of.  Also I can't trust the "name" method on `k` because sometimes it's not the default method (of course I could work around that, but it's not fun).

I've attached a patch that implements the feature, and there is a PR [here](https://github.com/ruby/ruby/pull/4324)

Side note: I think I would like "source_location" better than `const_source_location`, but I wanted to just file a feature request so we could talk about the feature in general.

---Files--------------------------------
0001-Add-constant-location-information-to-classes.patch (5.34 KB)


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

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

* [ruby-core:103039] [Ruby master Feature#17749] Const source location without name
  2021-03-25 23:29 [ruby-core:103026] [Ruby master Feature#17749] Const source location without name tenderlove
                   ` (2 preceding siblings ...)
  2021-03-26  6:57 ` [ruby-core:103034] " sawadatsuyoshi
@ 2021-03-26 16:09 ` tenderlove
  2021-03-26 17:44 ` [ruby-core:103041] " eregontp
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: tenderlove @ 2021-03-26 16:09 UTC (permalink / raw)
  To: ruby-core

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

File 0001-Add-constant-location-information-to-classes.patch added

I've renamed it to `source_location`.  So it's `A::B.source_location`.

----------------------------------------
Feature #17749: Const source location without name
https://bugs.ruby-lang.org/issues/17749#change-91102

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Priority: Normal
----------------------------------------
Hi,

I would like to be able to ask a class or module what its source location is without knowing the name.  For example, I want to do this:

```ruby
module A
  class B
  end
end

p A::B.const_source_location
```

In other works `A::B.const_source_location` would be equivalent to `A.const_source_location(:B)`.

The reason I want to do this is because sometimes it is very difficult to get the name of a constant, and sometimes I don't have access to the constant that "encloses" the class or module.

One example:

```ruby
ObjectSpace.each_object(Class) do |k|
  p k.const_source_location
end
```

In this case I have class objects, but I can't tell what constant `k` was defined *inside* of.  Also I can't trust the "name" method on `k` because sometimes it's not the default method (of course I could work around that, but it's not fun).

I've attached a patch that implements the feature, and there is a PR [here](https://github.com/ruby/ruby/pull/4324)

Side note: I think I would like "source_location" better than `const_source_location`, but I wanted to just file a feature request so we could talk about the feature in general.

---Files--------------------------------
0001-Add-constant-location-information-to-classes.patch (5.34 KB)
0001-Add-constant-location-information-to-classes.patch (5.97 KB)


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

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

* [ruby-core:103041] [Ruby master Feature#17749] Const source location without name
  2021-03-25 23:29 [ruby-core:103026] [Ruby master Feature#17749] Const source location without name tenderlove
                   ` (3 preceding siblings ...)
  2021-03-26 16:09 ` [ruby-core:103039] " tenderlove
@ 2021-03-26 17:44 ` eregontp
  2021-03-26 17:45 ` [ruby-core:103042] " eregontp
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: eregontp @ 2021-03-26 17:44 UTC (permalink / raw)
  To: ruby-core

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


`Module#source_location` sounds good to me.

I wonder if we should try to collect all places where the class/module is opened/reopened.
`const_source_location` returns where the module was first defined, but there we might want to know e.g. in which files that class was modified.

I could imagine that could be useful in an IDE or debugger.
OTOH it's probably not so reasonable for `class_exec/module_exec` which could be done in a loop potentially.

----------------------------------------
Feature #17749: Const source location without name
https://bugs.ruby-lang.org/issues/17749#change-91103

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Priority: Normal
----------------------------------------
Hi,

I would like to be able to ask a class or module what its source location is without knowing the name.  For example, I want to do this:

```ruby
module A
  class B
  end
end

p A::B.const_source_location
```

In other works `A::B.const_source_location` would be equivalent to `A.const_source_location(:B)`.

The reason I want to do this is because sometimes it is very difficult to get the name of a constant, and sometimes I don't have access to the constant that "encloses" the class or module.

One example:

```ruby
ObjectSpace.each_object(Class) do |k|
  p k.const_source_location
end
```

In this case I have class objects, but I can't tell what constant `k` was defined *inside* of.  Also I can't trust the "name" method on `k` because sometimes it's not the default method (of course I could work around that, but it's not fun).

I've attached a patch that implements the feature, and there is a PR [here](https://github.com/ruby/ruby/pull/4324)

Side note: I think I would like "source_location" better than `const_source_location`, but I wanted to just file a feature request so we could talk about the feature in general.

---Files--------------------------------
0001-Add-constant-location-information-to-classes.patch (5.34 KB)
0001-Add-constant-location-information-to-classes.patch (5.97 KB)


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

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

* [ruby-core:103042] [Ruby master Feature#17749] Const source location without name
  2021-03-25 23:29 [ruby-core:103026] [Ruby master Feature#17749] Const source location without name tenderlove
                   ` (4 preceding siblings ...)
  2021-03-26 17:44 ` [ruby-core:103041] " eregontp
@ 2021-03-26 17:45 ` eregontp
  2021-04-16  6:21 ` [ruby-core:103473] " mame
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: eregontp @ 2021-03-26 17:45 UTC (permalink / raw)
  To: ruby-core

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


Actually a good way to list all files where methods were added to the class is to go though instance_methods and ask their source_location, so that may be good enough for that purpose.

----------------------------------------
Feature #17749: Const source location without name
https://bugs.ruby-lang.org/issues/17749#change-91104

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Priority: Normal
----------------------------------------
Hi,

I would like to be able to ask a class or module what its source location is without knowing the name.  For example, I want to do this:

```ruby
module A
  class B
  end
end

p A::B.const_source_location
```

In other works `A::B.const_source_location` would be equivalent to `A.const_source_location(:B)`.

The reason I want to do this is because sometimes it is very difficult to get the name of a constant, and sometimes I don't have access to the constant that "encloses" the class or module.

One example:

```ruby
ObjectSpace.each_object(Class) do |k|
  p k.const_source_location
end
```

In this case I have class objects, but I can't tell what constant `k` was defined *inside* of.  Also I can't trust the "name" method on `k` because sometimes it's not the default method (of course I could work around that, but it's not fun).

I've attached a patch that implements the feature, and there is a PR [here](https://github.com/ruby/ruby/pull/4324)

Side note: I think I would like "source_location" better than `const_source_location`, but I wanted to just file a feature request so we could talk about the feature in general.

---Files--------------------------------
0001-Add-constant-location-information-to-classes.patch (5.34 KB)
0001-Add-constant-location-information-to-classes.patch (5.97 KB)


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

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

* [ruby-core:103473] [Ruby master Feature#17749] Const source location without name
  2021-03-25 23:29 [ruby-core:103026] [Ruby master Feature#17749] Const source location without name tenderlove
                   ` (5 preceding siblings ...)
  2021-03-26 17:45 ` [ruby-core:103042] " eregontp
@ 2021-04-16  6:21 ` mame
  2021-04-16 18:00 ` [ruby-core:103484] " tenderlove
  2021-04-17  7:38 ` [ruby-core:103494] " mame
  8 siblings, 0 replies; 10+ messages in thread
From: mame @ 2021-04-16  6:21 UTC (permalink / raw)
  To: ruby-core

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


@tenderlove I'm not sure about the use case. What purpose do you want this for? Memory profiling?

`const_source_location` and `source_location` are very similar but different for an anonymou class. The former returns the site where the class object is assigned to a constant, while the latter returns the site where it is created. But in almost all cases, they are same and redundant. I don't think it is a good idea to introduce similar and redundant fields in terms of maintenance, unless it is really needed. So, I'd like to ask a question: is the difference really needed for your use case?

(I'm never negative for this proposal, but I wanted to confirm.)

----------------------------------------
Feature #17749: Const source location without name
https://bugs.ruby-lang.org/issues/17749#change-91571

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Priority: Normal
----------------------------------------
Hi,

I would like to be able to ask a class or module what its source location is without knowing the name.  For example, I want to do this:

```ruby
module A
  class B
  end
end

p A::B.const_source_location
```

In other works `A::B.const_source_location` would be equivalent to `A.const_source_location(:B)`.

The reason I want to do this is because sometimes it is very difficult to get the name of a constant, and sometimes I don't have access to the constant that "encloses" the class or module.

One example:

```ruby
ObjectSpace.each_object(Class) do |k|
  p k.const_source_location
end
```

In this case I have class objects, but I can't tell what constant `k` was defined *inside* of.  Also I can't trust the "name" method on `k` because sometimes it's not the default method (of course I could work around that, but it's not fun).

I've attached a patch that implements the feature, and there is a PR [here](https://github.com/ruby/ruby/pull/4324)

Side note: I think I would like "source_location" better than `const_source_location`, but I wanted to just file a feature request so we could talk about the feature in general.

---Files--------------------------------
0001-Add-constant-location-information-to-classes.patch (5.34 KB)
0001-Add-constant-location-information-to-classes.patch (5.97 KB)


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

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

* [ruby-core:103484] [Ruby master Feature#17749] Const source location without name
  2021-03-25 23:29 [ruby-core:103026] [Ruby master Feature#17749] Const source location without name tenderlove
                   ` (6 preceding siblings ...)
  2021-04-16  6:21 ` [ruby-core:103473] " mame
@ 2021-04-16 18:00 ` tenderlove
  2021-04-17  7:38 ` [ruby-core:103494] " mame
  8 siblings, 0 replies; 10+ messages in thread
From: tenderlove @ 2021-04-16 18:00 UTC (permalink / raw)
  To: ruby-core

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


mame (Yusuke Endoh) wrote in #note-8:
> @tenderlove I'm not sure about the use case. What purpose do you want this for? Memory profiling?
> 
> `const_source_location` and `source_location` are very similar but different for an anonymou class. The former returns the site where the class object is assigned to a constant, while the latter returns the site where it is created. But in almost all cases, they are same and redundant. I don't think it is a good idea to introduce similar and redundant fields in terms of maintenance, unless it is really needed. So, I'd like to ask a question: is the difference really needed for your use case?
> 
> (I'm never negative for this proposal, but I wanted to confirm.)

For my use case the difference doesn't matter.  If we had `namespace` as in #17753, then I think I could write `klass.namespace.const_source_location(klass.name)` (or make the implementation do this).

But to confirm the difference between "allocation location" vs "assignment location" doesn't matter to me.

----------------------------------------
Feature #17749: Const source location without name
https://bugs.ruby-lang.org/issues/17749#change-91582

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Priority: Normal
----------------------------------------
Hi,

I would like to be able to ask a class or module what its source location is without knowing the name.  For example, I want to do this:

```ruby
module A
  class B
  end
end

p A::B.const_source_location
```

In other works `A::B.const_source_location` would be equivalent to `A.const_source_location(:B)`.

The reason I want to do this is because sometimes it is very difficult to get the name of a constant, and sometimes I don't have access to the constant that "encloses" the class or module.

One example:

```ruby
ObjectSpace.each_object(Class) do |k|
  p k.const_source_location
end
```

In this case I have class objects, but I can't tell what constant `k` was defined *inside* of.  Also I can't trust the "name" method on `k` because sometimes it's not the default method (of course I could work around that, but it's not fun).

I've attached a patch that implements the feature, and there is a PR [here](https://github.com/ruby/ruby/pull/4324)

Side note: I think I would like "source_location" better than `const_source_location`, but I wanted to just file a feature request so we could talk about the feature in general.

---Files--------------------------------
0001-Add-constant-location-information-to-classes.patch (5.34 KB)
0001-Add-constant-location-information-to-classes.patch (5.97 KB)


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

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

* [ruby-core:103494] [Ruby master Feature#17749] Const source location without name
  2021-03-25 23:29 [ruby-core:103026] [Ruby master Feature#17749] Const source location without name tenderlove
                   ` (7 preceding siblings ...)
  2021-04-16 18:00 ` [ruby-core:103484] " tenderlove
@ 2021-04-17  7:38 ` mame
  8 siblings, 0 replies; 10+ messages in thread
From: mame @ 2021-04-17  7:38 UTC (permalink / raw)
  To: ruby-core

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


Thank you! Then, I think the patch should use const_source_location info instead of adding `file` and `line` fields.

tenderlovemaking (Aaron Patterson) wrote in #note-9:
> For my use case the difference doesn't matter.  If we had `namespace` as in #17753, then I think I could write `klass.namespace.const_source_location(klass.name)` (or make the implementation do this).

Sorry I am missing somthing but if an anonymous class does not matter at all, I think you are already able to write `Object.const_source_location(klass.name)` even if #17753 is not accepted.

----------------------------------------
Feature #17749: Const source location without name
https://bugs.ruby-lang.org/issues/17749#change-91590

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Priority: Normal
----------------------------------------
Hi,

I would like to be able to ask a class or module what its source location is without knowing the name.  For example, I want to do this:

```ruby
module A
  class B
  end
end

p A::B.const_source_location
```

In other works `A::B.const_source_location` would be equivalent to `A.const_source_location(:B)`.

The reason I want to do this is because sometimes it is very difficult to get the name of a constant, and sometimes I don't have access to the constant that "encloses" the class or module.

One example:

```ruby
ObjectSpace.each_object(Class) do |k|
  p k.const_source_location
end
```

In this case I have class objects, but I can't tell what constant `k` was defined *inside* of.  Also I can't trust the "name" method on `k` because sometimes it's not the default method (of course I could work around that, but it's not fun).

I've attached a patch that implements the feature, and there is a PR [here](https://github.com/ruby/ruby/pull/4324)

Side note: I think I would like "source_location" better than `const_source_location`, but I wanted to just file a feature request so we could talk about the feature in general.

---Files--------------------------------
0001-Add-constant-location-information-to-classes.patch (5.34 KB)
0001-Add-constant-location-information-to-classes.patch (5.97 KB)


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

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

end of thread, other threads:[~2021-04-17  7:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-25 23:29 [ruby-core:103026] [Ruby master Feature#17749] Const source location without name tenderlove
2021-03-26  0:12 ` [ruby-core:103027] " dylan.smith
2021-03-26  2:01 ` [ruby-core:103028] " shevegen
2021-03-26  6:57 ` [ruby-core:103034] " sawadatsuyoshi
2021-03-26 16:09 ` [ruby-core:103039] " tenderlove
2021-03-26 17:44 ` [ruby-core:103041] " eregontp
2021-03-26 17:45 ` [ruby-core:103042] " eregontp
2021-04-16  6:21 ` [ruby-core:103473] " mame
2021-04-16 18:00 ` [ruby-core:103484] " tenderlove
2021-04-17  7:38 ` [ruby-core:103494] " mame

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).