carsonreinke (Carson Reinke)
- Login: carsonreinke
- Email: carson@reinke.co
- Registered on: 03/13/2014
- Last sign in: 11/13/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
08/17/2016
-
05:12 PM Ruby Bug #12684 (Closed): Delegator#eql? missing
- There is some strange behavior because Delegator is missing an alias of #eql? to #==
```
2.3.1 :001 > s = 'test'
=> "test"
2.3.1 :002 > d = SimpleDelegator.new(s)
=> "test"
2.3.1 :003 > d.eql?(d)
=> false
2.3.1 :004 > d =...