Module: InheritedHash::InstanceMethods
- Included in:
- ClassMethods
- Defined in:
- lib/inherited-hash.rb
Instance Method Summary collapse
Instance Method Details
#inherited_hashes ⇒ Object
10 11 12 13 14 |
# File 'lib/inherited-hash.rb', line 10 def inherited_hashes @inherited_hashes ||= Hash.new do |h,name| h[name] = ConnectedHash.new.connect(self,name) end end |