maicolben (Maicol Bentancor)
- Login: maicolben
- Registered on: 10/17/2024
- Last sign in: 10/21/2024
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/21/2024
-
04:24 PM Ruby Bug #20808 (Closed): Data#pretty_print doesn't handle private or remove attribute readers
- Given the next code:
```
Dog = Data.define(:name) do
def inspect
"Hello!"
end
private
attr_reader :name
end
Dog.new(name: "Fido")
```
It throws an error:
- An error occurred when inspecting the object: #<NoM...