I have an array of hashes like so:
[{\"testPARAM1\"=>\"testVAL1\"}, {\"testPARAM2\"=>\"testVAL2\"}]
And I\'m trying to map this onto sin
How about:
h = [{"testPARAM1"=>"testVAL1"}, {"testPARAM2"=>"testVAL2"}] r = h.inject(:merge)