Eu tenho uma matriz de hashes assim: [{"testPARAM1"=>"testVAL1"}, {"testPARAM2"=>"testVAL2"}] E estou tentando mapear isso em um único hash assim: {"testPARAM2"=>"testVAL2", "testPARAM1"=>"testVAL1"} Eu consegui usando par={} mitem["params"].each { |h| h.each {|k,v| par[k]=v}...