class Rouge::InheritableHash

def [](k)

def [](k)
  _sup = super
  return _sup if own_keys.include?(k)
  _sup || parent[k]
end