A hash that can inherit entries from other normal hashes or other inheritance hashes.
This project is maintained by ChapterHouse
A hash that can inherit entries from other normal hashes or other inheritance hashes. Originally created for class level attributes, InheritanceHash is designed for maintaining hashes in an inheritable fashion such that changes in the parent can be reflected in the children but not vice versa.
Add this line to your application's Gemfile:
gem 'inheritance_hash'
And then execute:
$ bundle
Or install it yourself as:
$ gem install inheritance_hash
Use it just like a normal hash only call InheritanceHash.new
To inherit values from another hash use: ihash.inherit_from(other_hash)
To prevent inheriting a specific value use: ihash.dont_inherit(key)
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)