Probabilmente mi manca qualcosa di ovvio, ma c'è un modo per accedere all'indice / conteggio dell'iterazione all'interno di un hash ogni ciclo?
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)?
}