viraptor (Stan Pitucha)
- Login: viraptor
- Registered on: 10/25/2018
- Last sign in: 10/25/2018
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/25/2018
-
10:43 PM Ruby Bug #15255 (Rejected): Change in protected handling 2.3 -> 2.4,2.5
- It looks like when moving to 2.4 and higher, the access to protected method has changed. In the following case:
~~~ ruby
class Foo
def bar(objects)
objects.map(&:baz)
end
protected
def baz
self.inspect
en...