私は次のものを持っています
friends = [{ name: "Jack", attr1:"def", attr2:"def" }, { name: "Jill", attr1:"def", attr2:"def" }]
上記の表現をこのようなハッシュのハッシュに変換したい
friends = { "Jack" => { attr1: "def", attr2:"def" }, "Jill" => { attr1: "def", attr2: "def" } }
Ruby でこれを行うエレガントな方法はありますか?