class Rouge::InheritableList

def each(&b)

def each(&b)
  return enum_for(:each) unless block_given?
  parent.each(&b)
  own_entries.each(&b)
end