I have a regular Rails model with many validations. The model has a skip_validations column. When an object has skip_validations: true, I want to be able to update the object without running any validations.
Is there any way to do this without adding an unless option to every validation? -- (for example unless: Proc.new { |obj| obj.skip_validations == true })
Thank you!