I need a clean way to check for the existence of a dynamic attribute on an embedded Mongoid model instance.
This works for a top level model;
account.attributes.member?("coordinates")
But my coordinates are stored in an embedded model, locations. The following throws an undefined method error;
account.locations.attributes.member?("coordinates")
Anyone know a way to do this?