[#68845] [Ruby trunk - Feature #11056] [PATCH] lib/net/*: use io/wait methods instead of IO.select — normalperson@...
Issue #11056 has been updated by Eric Wong.
3 messages
2015/04/11
[#68945] [Ruby trunk - Feature #11083] [Open] Gemify net-telnet — shibata.hiroshi@...
Issue #11083 has been reported by Hiroshi SHIBATA.
4 messages
2015/04/21
[#68951] Re: [Ruby trunk - Feature #11083] [Open] Gemify net-telnet
— Eric Wong <normalperson@...>
2015/04/21
shibata.hiroshi@gmail.com wrote:
[#69012] [Ruby trunk - Feature #11105] [Open] ES6-like hash literals — shugo@...
Issue #11105 has been reported by Shugo Maeda.
5 messages
2015/04/29
[ruby-core:68714] [Ruby trunk - Feature #10863] allow protected class methods to be callable from instance methods
From:
alxtskrnk@...
Date:
2015-04-01 18:11:28 UTC
List:
ruby-core #68714
Issue #10863 has been updated by bug hit.
Does the proposed feature make sense?
----------------------------------------
Feature #10863: allow protected class methods to be callable from instance methods
https://bugs.ruby-lang.org/issues/10863#change-51998
* Author: bug hit
* Status: Open
* Priority: Normal
* Assignee:
----------------------------------------
```ruby
class Bar
class << self
protected def foo_helper
end
end
def foo
self.class.foo_helper
end
end
```
here, Bar::foo_helper is not intended as the api of the class, it's a helper for internal use so it should be possible to use it internally without making it public or resorting to `send`
--
https://bugs.ruby-lang.org/