Feature #6442
closedCRUDify Hash class
Description
Ruby's Hash class is not very internally "connascent" --many different methods access the underlying data. There is no core set of specific methods that can be overridden to handle all cases. This leads to a very unDRY and bloated class when subclassing or delegating. If Ruby's Hash could be modified to follow essentially a CRUD model, with single points-of-entry for the creation, reading, updating and deletion of entries, and all other methods route through these core methods for access to the underlying data, then it would be much easier to subclass and delegate, and make the Hash class much more solid in design.
I believe the core methods needed are: read(key)
, store(key,value)
, delete(key)
as well as key?(key)
and keys
.
Updated by nobu (Nobuyoshi Nakada) over 12 years ago
- Status changed from Open to Feedback
- Assignee set to trans (Thomas Sawyer)
Patches welcome.
Updated by yhara (Yutaka HARA) about 12 years ago
- Target version changed from 2.0.0 to 2.6