Questo codice Ruby non si comporta come mi aspetterei:
# create an array of hashes
sort_me = []
sort_me.push({"value"=>1, "name"=>"a"})
sort_me.push({"value"=>3, "name"=>"c"})
sort_me.push({"value"=>2, "name"=>"b"})
# sort
sort_me.sort_by { |k| k["value"]}
# same order as above!
puts sort_me
Sto cercando di ordinare l'array di hash in base alla chiave "valore", ma vengono stampati non ordinati.
Array#sort_by!
è nuovo in Ruby 1.9.2. Disponibile oggi a tutte le versioni Ruby richiedendo anche la miabackports
gemma :-)