msxavi (Emerson Xavier)
- Login: msxavi
- Registered on: 09/15/2023
- Last sign in: 09/15/2023
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/04/2023
-
06:46 AM Ruby Bug #19893: OpenStruct#respond_to? when true fails with NameError
- Thank you! That's it.
09/19/2023
-
10:49 PM Ruby Bug #19893 (Closed): OpenStruct#respond_to? when true fails with NameError
- Hello,
I have a case where I overrode respond_to? on a subclass of OpenStruct because I this class to work as fake object.
```
class Dep
def a
"Hello from Dep"
end
end
class FakeDep < OpenStruct
def respond_to?(*ar...