--
You received this message because you are subscribed to the Google Groups "praxis-development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to praxis-developm...@googlegroups.com.
To post to this group, send email to praxis-de...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/praxis-development/02e99d7e-a44f-443f-8906-b051f0a4c8a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/praxis-development/CAA_K6YuXKOLHoTts3s4TQ41b9FEg4H-aZ07%2B1_2RocdRQYq4%2Bw%40mail.gmail.com.
Sounds good to me.
To unsubscribe from this group and stop receiving emails from it, send an email to praxis-development+unsub...@googlegroups.com.
To post to this group, send email to praxis-de...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/praxis-development/02e99d7e-a44f-443f-8906-b051f0a4c8a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "praxis-development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to praxis-development+unsub...@googlegroups.com.
By default, a view will not render attributes whose values are nil
. This can be overrided by passing include_nil: true
when defining the view. For example:
class Blog < Praxis::MediaType
view :partial, include_nil: true do
# ...
end
end