From: "yermej@..." Date: 2007-08-30T05:50:06+09:00 Subject: Re: How to make an array of hashes to a single array with all the values of these hashes ? On Aug 29, 2:53 pm, dima wrote: > The beauty is that you can do the same stuff in so many different > ways ;-) I'll offer up an inject solution for this one: my_new_array = myvalue.inject([]) {|arr, h| arr + h.values} Jeremy