A functional approach gives the most compact solution for this kind of problems. Let's break it down:
>> input = {"a" => ["val1", "val2"], "b" => ["valb1", "valb2"]}
>> input.values.transpose
=> [["val1", "valb1"], ["val2", "valb2"]]
This looks promising, we have the values we needed for each hash, we should now zip them with the keys:
>> input.values.transpose.map { |vs| input.keys.zip(vs) }
=> [[["a", "val1"], ["b", "valb1"]], [["a", "val2"], ["b", "valb2"]]]
Good, we got the mapping [[(key, value)]] we were looking for, now let's finally build the hashes (Facets users will definitely prefer Enumerable#mash over the Hash constructor):
>> input.values.transpose.map { |vs| Hash[input.keys.zip(vs)] }
=> [{"a"=>"val1", "b"=>"valb1"}, {"a"=>"val2", "b"=>"valb2"}]
{:a => ["val1", "val2", ...], :b => ["valb1", "valb2", ...], ...}?? so that the output will include, say,:c => "valc1", blah blah blah? – DigitalRoss Oct 29 '09 at 0:40