Images Model contain id, file_name and description. Gem: either RABL or GRAPE
The usual output is:
{
"images": [
{
"id": 48660,
"file_name": "9e0f6.jpg",
"description": "View 1"
},
{
"id": 48665,
"file_name": "fd42f.jpg",
"description": "View 2"
},
{
"id": 48662,
"file_name": "477e8.jpg",
"description": "View 3"
}
]
}
How do I remove the attributes/keys and convert the values to an array as follows?
{
"images":[
[
48660,
"9e0f6.jpg",
"View 1"
],
[
48665,
"fd42f.jpg",
"View 2"
],
[
48662,
"477e8.jpg",
"View 3"
]
]
}