ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:71490] [Ruby trunk - Feature #11689] [Open] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
@ 2015-11-15  4:53 ` spiketeika
  2015-11-15  6:51 ` [ruby-core:71491] [Ruby trunk - Feature #11689] " shibata.hiroshi
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: spiketeika @ 2015-11-15  4:53 UTC (permalink / raw)
  To: ruby-core

Issue #11689 has been reported by Kaneko Yuichiro.

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689

* Author: Kaneko Yuichiro
* Status: Open
* Priority: Normal
* Assignee: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:71491] [Ruby trunk - Feature #11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
  2015-11-15  4:53 ` [ruby-core:71490] [Ruby trunk - Feature #11689] [Open] Add methods allow us to get visibility from Method and UnboundMethod object spiketeika
@ 2015-11-15  6:51 ` shibata.hiroshi
  2015-11-15 10:08 ` [ruby-core:71493] " spiketeika
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: shibata.hiroshi @ 2015-11-15  6:51 UTC (permalink / raw)
  To: ruby-core

Issue #11689 has been updated by Hiroshi SHIBATA.


What's use-case for these methods?

At least, You should describe use-case with feature request.

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-54854

* Author: Kaneko Yuichiro
* Status: Open
* Priority: Normal
* Assignee: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:71493] [Ruby trunk - Feature #11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
  2015-11-15  4:53 ` [ruby-core:71490] [Ruby trunk - Feature #11689] [Open] Add methods allow us to get visibility from Method and UnboundMethod object spiketeika
  2015-11-15  6:51 ` [ruby-core:71491] [Ruby trunk - Feature #11689] " shibata.hiroshi
@ 2015-11-15 10:08 ` spiketeika
  2018-10-22 21:43 ` [ruby-core:89514] [Ruby trunk Feature#11689] " Mike
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: spiketeika @ 2015-11-15 10:08 UTC (permalink / raw)
  To: ruby-core

Issue #11689 has been updated by Kaneko Yuichiro.


Sorry.

These methods are useful for inspecting Method object (e.g. debugging or documenting).
Currently if we need information about visibility, we should check `owner.public_instance_methods`, `owner.protected_instance_methods`, and `owner.private_instance_methods`:
see also pry: https://github.com/pry/pry/blob/1f3f7e7ceff27ef516536849fc44fdf010f91c93/lib/pry/method.rb#L343

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-54857

* Author: Kaneko Yuichiro
* Status: Open
* Priority: Normal
* Assignee: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:89514] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (2 preceding siblings ...)
  2015-11-15 10:08 ` [ruby-core:71493] " spiketeika
@ 2018-10-22 21:43 ` Mike
  2018-11-04 23:56 ` [ruby-core:89708] " spiketeika
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: Mike @ 2018-10-22 21:43 UTC (permalink / raw)
  To: ruby-core

Issue #11689 has been updated by MikeVastola (Mike Vastola).


Just wanted to second this FR as something I'd find useful.

Also, it would be nice to have associated predicate methods (i.e. `Method#public?`, `Method#protected?` and `Method#private?`)


----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-74567

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:89708] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (3 preceding siblings ...)
  2018-10-22 21:43 ` [ruby-core:89514] [Ruby trunk Feature#11689] " Mike
@ 2018-11-04 23:56 ` spiketeika
  2018-11-05  0:40 ` [ruby-core:89709] " Mike
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: spiketeika @ 2018-11-04 23:56 UTC (permalink / raw)
  To: ruby-core

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


Thanks for your comment.
Can you show me the use cases where predicate methods are useful?
I think these predicate methods can be implemented by using `#visibility` method, so these predicate methods should not be needed as core features.

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-74751

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:89709] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (4 preceding siblings ...)
  2018-11-04 23:56 ` [ruby-core:89708] " spiketeika
@ 2018-11-05  0:40 ` Mike
  2018-11-05 15:43 ` [ruby-core:89711] " shevegen
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: Mike @ 2018-11-05  0:40 UTC (permalink / raw)
  To: ruby-core

Issue #11689 has been updated by MikeVastola (Mike Vastola).


Oh, sorry. I missed where you were looking for an example before. Here's a good one from the popular activesupport gem: [here](https://github.com/rails/rails/blob/c823f9252be2552c65bb1370ccf42a14de461439/activesupport/lib/active_support/deprecation/method_wrappers.rb#L69).

As for the predicate methods, yes, they can be derrived from core methods and they -- like most core predicate methods, -- would be for convenience, but I disagree that that should be the determining factor. The same could be said for `#nil?`, `#is_a?`, `#respond_to?` and `#*_defined?` -- the functionality of which could be accomplished by checking the results of other core methods.
 

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-74752

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:89711] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (5 preceding siblings ...)
  2018-11-05  0:40 ` [ruby-core:89709] " Mike
@ 2018-11-05 15:43 ` shevegen
  2018-11-22  8:00 ` [ruby-core:89958] " matz
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: shevegen @ 2018-11-05 15:43 UTC (permalink / raw)
  To: ruby-core

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


(I think it may be easier to file a separate issue for the predicate methods,
such as Method#public?, Method#protected? or Method#private?).

Kaneko Yuichiro added the issue to the next upcoming developer meeting. Let's
see to the upcoming discussion of matz and the core developers and matz.

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-74755

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:89958] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (6 preceding siblings ...)
  2018-11-05 15:43 ` [ruby-core:89711] " shevegen
@ 2018-11-22  8:00 ` matz
  2018-11-22 17:51 ` [ruby-core:89982] " Mike
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: matz @ 2018-11-22  8:00 UTC (permalink / raw)
  To: ruby-core

Issue #11689 has been updated by matz (Yukihiro Matsumoto).


The proposal sounds nice, but I am not fully satisfied with the term **visibility**. So how about adding `public?`, `private?` and `protected?` methods instead?

Matz.


----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-75059

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:89982] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (7 preceding siblings ...)
  2018-11-22  8:00 ` [ruby-core:89958] " matz
@ 2018-11-22 17:51 ` Mike
  2018-11-24  6:43 ` [ruby-core:90024] " mame
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: Mike @ 2018-11-22 17:51 UTC (permalink / raw)
  To: ruby-core

Issue #11689 has been updated by MikeVastola (Mike Vastola).


I mean, as seen in yui-knk's example with `pry`, I think it's helpful to be able to essentially do `send("#{method.visibility}_instance_methods")`. I'm not picky on the name though if there is something better than visibility.

But I think it makes sense to address any/all methods that are introduced in this issue.

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-75088

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:90024] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (8 preceding siblings ...)
  2018-11-22 17:51 ` [ruby-core:89982] " Mike
@ 2018-11-24  6:43 ` mame
  2018-11-24 12:40 ` [ruby-core:90036] " eregontp
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: mame @ 2018-11-24  6:43 UTC (permalink / raw)
  To: ruby-core

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


I don't think that `send("#{method.visibility}_instance_methods")` would be a frequent, strongly-recommended idiom.  You can do it more explicitly as follows.

```
def visibility(method)
  case
  when method.public?    then "public_instance_methods"
  when method.protected? then "protected_instance_methods"
  when method.private?   then "private_instance_methods"
  else raise "unknown method type"
  end
end
```

This code would require work if a new visibility is introduced.  But, there is no plan to add a new visibility in foreseeable future.  Also, if something is actually introduced, there is no guarantee that the idiom would work as is.

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-75129

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:90036] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (9 preceding siblings ...)
  2018-11-24  6:43 ` [ruby-core:90024] " mame
@ 2018-11-24 12:40 ` eregontp
  2018-11-24 13:10 ` [ruby-core:90037] " mame
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 14+ messages in thread
From: eregontp @ 2018-11-24 12:40 UTC (permalink / raw)
  To: ruby-core

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


I think visibility is the perfect, accurate and unambiguous term for this (e.g., it's even used in the documentation of #private).
Returning the corresponding Symbol also seems very intuitive.

So take my vote as +1 for Method#visibility and -1 for 3 methods which seem very inconvenient to use.
Basically, it's 1 method versus 3 and it's strictly more expressive/powerful (the result can be displayed easily for introspection, and also compared to a known visibility).

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-75145

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:90037] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (10 preceding siblings ...)
  2018-11-24 12:40 ` [ruby-core:90036] " eregontp
@ 2018-11-24 13:10 ` mame
  2018-11-24 15:50 ` [ruby-core:90038] " eregontp
  2018-11-26  4:42 ` [ruby-core:90067] " duerst
  13 siblings, 0 replies; 14+ messages in thread
From: mame @ 2018-11-24 13:10 UTC (permalink / raw)
  To: ruby-core

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


FYI: The reason why matz does not like the term "visibility", is because the method attribute is not a visibility.  In fact, all methods are visible in Ruby.  Instead, the method attribute restricts how and where it can be called.  We briefly discussed another name candidate at the meeting, but we couldn't find a good name of the concept.  Then matz chose the three methods (public?, etc.) because we can avoid deciding the name.

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-75146

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:90038] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (11 preceding siblings ...)
  2018-11-24 13:10 ` [ruby-core:90037] " mame
@ 2018-11-24 15:50 ` eregontp
  2018-11-26  4:42 ` [ruby-core:90067] " duerst
  13 siblings, 0 replies; 14+ messages in thread
From: eregontp @ 2018-11-24 15:50 UTC (permalink / raw)
  To: ruby-core

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


mame (Yusuke Endoh) wrote:
> FYI: The reason why matz does not like the term "visibility", is because the method attribute is not a visibility.  In fact, all methods are visible in Ruby.  Instead, the method attribute restricts how and where it can be called.  We briefly discussed another name candidate at the meeting, but we couldn't find a good name of the concept.  Then matz chose the three methods (public?, etc.) because we can avoid deciding the name.

Thanks for the information :)

Right, the visibility does not affect how to call the method reflectively (which is done with Method#call), but reflects the visibility in the context of normal calls.
To be honest, I expect very few people to be confused by this.
I think it's clear it means the definition time visibility.
Metaprogramming methods in general ignore visibility (or enforce public with #public_send), so a visibility for how to call the Method object wouldn't make sense anyway.

> Instead, the method attribute restricts how and where it can be called.
> We briefly discussed another name candidate at the meeting, but we couldn't find a good name of the concept.

Visibility is the standard term to talk about public/protected/private and restrictions of how and where a method can be called, in all languages I know.
I think no other term makes more sense than visibility, and it is a well-known concept in programming languages.
Maybe in other natural languages this is confusing? I think in English it's as clear as it can be for an established concept.

> In fact, all methods are visible in Ruby.

I'm not sure what you mean here. But one could say "method m in class A is not visible to instances of class B" and that would apply to Ruby if m is private.

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-75147

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

* [ruby-core:90067] [Ruby trunk Feature#11689] Add methods allow us to get visibility from Method and UnboundMethod object.
       [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
                   ` (12 preceding siblings ...)
  2018-11-24 15:50 ` [ruby-core:90038] " eregontp
@ 2018-11-26  4:42 ` duerst
  13 siblings, 0 replies; 14+ messages in thread
From: duerst @ 2018-11-26  4:42 UTC (permalink / raw)
  To: ruby-core

Issue #11689 has been updated by duerst (Martin Dürst).


I agree that `#visibility` is the best solution. When somebody mentioned this at the recent Ruby committers' meeting, I immediately thought "that's it". Benoit provides some more background.

There are arguments that this may be misunderstood, but so might the original keywords `public`, `protected`, and `private`, and many other Ruby keywords and names. Ruby users already have to learn that `private` doesn't _really_ mean private, that in Ruby, there's always some metaprogamming workaround. Once they now it, they will apply this to `#visibility` without much problems.

----------------------------------------
Feature #11689: Add methods allow us to get visibility from Method and UnboundMethod object.
https://bugs.ruby-lang.org/issues/11689#change-75178

* Author: yui-knk (Kaneko Yuichiro)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Add `Method#visibility` and `UnboundMethod#visibility` for getting visibility from Method and UnboundMethod object.
In GitHub https://github.com/ruby/ruby/pull/1098.

---Files--------------------------------
0001-Add-Method-visibility-and-UnboundMethod-visibility.patch (3.11 KB)


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

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

end of thread, other threads:[~2018-11-26  4:42 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <redmine.issue-11689.20151115045331@ruby-lang.org>
2015-11-15  4:53 ` [ruby-core:71490] [Ruby trunk - Feature #11689] [Open] Add methods allow us to get visibility from Method and UnboundMethod object spiketeika
2015-11-15  6:51 ` [ruby-core:71491] [Ruby trunk - Feature #11689] " shibata.hiroshi
2015-11-15 10:08 ` [ruby-core:71493] " spiketeika
2018-10-22 21:43 ` [ruby-core:89514] [Ruby trunk Feature#11689] " Mike
2018-11-04 23:56 ` [ruby-core:89708] " spiketeika
2018-11-05  0:40 ` [ruby-core:89709] " Mike
2018-11-05 15:43 ` [ruby-core:89711] " shevegen
2018-11-22  8:00 ` [ruby-core:89958] " matz
2018-11-22 17:51 ` [ruby-core:89982] " Mike
2018-11-24  6:43 ` [ruby-core:90024] " mame
2018-11-24 12:40 ` [ruby-core:90036] " eregontp
2018-11-24 13:10 ` [ruby-core:90037] " mame
2018-11-24 15:50 ` [ruby-core:90038] " eregontp
2018-11-26  4:42 ` [ruby-core:90067] " duerst

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