Hello,
this code is not behaving as I would expect:
# 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
I'm looking to sort the array of hashes by the key "value", but they are printed unsorted.
Any suggestions?
Thanks.