Mandrill sends back JSON data to my web-hook and when converted to Ruby data structures it looks like the below:
{ "image.jpg" => { "name => "image.jpg", "type" => "image/jpeg", "content" => "", "base64" => true } }
They send this, when what I need is an Array of Hashes, ex:
[{ "name => "image.jpg", "type" => "image/jpeg", "content" => "", "base64" => true }]
How can the first set of data be converted to an array of hashes?