With #RubyOnRails, you can check an #ActiveRecord object’s validations on an attribute using `object.class.validators_on(attribute)`.
The result is an array of validator classes, most of which include an `options` method with the configured options from the definition in the model.
Is it possible to filter out conditional validations from the returned array?
(I have a conditional validation on an attribute and would like to know when it doesn’t apply to a particular instance of the model.)