hermes128 (Sebastian Herm)
- Login: hermes128
- Registered on: 03/03/2016
- Last sign in: 03/04/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
03/04/2016
-
12:49 PM Ruby Feature #12141: send and __send__
- Thanks for your feedback. :-)
I agree, it's a minor (cosmetic) issue. For example, Rails uses `__send__` only 17 times in its huge codebase. :-)
I don't suggest removing `send`, but just replacing `__send__` with `invoke` to have a...
03/03/2016
-
09:29 PM Ruby Feature #12141: send and __send__
- Sorry, hard time editing/formating my post !
:-(
But I hope you understand what I mean ! -
09:21 PM Ruby Feature #12141: send and __send__
- [deleted by author]
-
09:17 PM Ruby Feature #12141 (Open): send and __send__
- Hi guys !
We have this concept of sending messages to objects with `Object#send`, and that's fine, but often a child class defines its own send method, so that's why we have this ugly `Object#__send__` hack.
So, I suggest dropping ...