nashby (Vasiliy Ermolovich)
- Login: nashby
- Registered on: 04/02/2018
- Last sign in: 02/18/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
04/02/2018
-
03:24 PM Ruby Bug #14658 (Closed): Kernel#singleton_method is incompatible with Module#prepend.
- It's not possible to get singleton method using Kernel#singleton_method if singleton class was prepended with any module:
~~~ ruby
module Empty; end
class MyClass
singleton_class.prepend(Empty)
def self.foo; end
end
My...