Ich vermisse wahrscheinlich etwas Offensichtliches, aber gibt es eine Möglichkeit, auf den Index / die Anzahl der Iterationen innerhalb eines Hash jeder Schleife zuzugreifen?
hash = {'three' => 'one', 'four' => 'two', 'one' => 'three'}
hash.each { |key, value|
# any way to know which iteration this is
# (without having to create a count variable)?
}