Rabl allows you to grab the attributes by naming them in your view, for instance:
object @user
attributes :name, :email
I have a model whose attributes are will not be known, but I'd like to display everything returned from the controller in my instance variable using rabl.
Is there a shortcut like:
attributes :all
etc.
Thanks