I\'m trying to render a pretty simple data structure using RABL, but I can\'t figure out how to remove the child root nodes properly. Here are my two templates.
Fir
Try replacing:
child :files do extends 'groups/_file' end
with:
node :files do |group| group.files.map do |file| partial 'groups/_file', object: file, root: false end end