I have a ruby hash that I'd like to render using RABL. The hash looks something like this:
@my_hash = {
:c => {
:d => "e"
}
}
I'm trying to render this with some RABL code:
object @my_hash => :some_object
attributes :d
node(:c) { |n| n[:d] }
but I'm receiving {"c":null}
How can I render this with RABL?
Currently RABL doesn't play too nicely with hashes. I was able to work around this by converting my hash to an OpenStruct format (which uses a more RABL-friendly dot-notation). Using your example:
your_controller.rb
your_view.rabl
results