module Mongoid::Validatable::Queryable
Mixin module included in Mongoid::Validatable::Uniqueness class when ensures that the persistence context is cleared when executing uniqueness queries.
@todo Move this into the Mongoid::Validatable::Uniqueness class.
@api private
Public Instance Methods
with_query(document) { || ... }
click to toggle source
Wrap the validation inside the an execution block that alert’s the client not to clear its persistence options.
@example Execute the validation with a query.
with_query(document) do #... end
@param [ Document
] document The document being validated.
@return [ Object
] The result of the yield.
# File lib/mongoid/validatable/queryable.rb, line 27 def with_query(document) klass = document.class begin Threaded.begin_execution("#{klass.name}-validate-with-query") yield ensure Threaded.exit_execution("#{klass.name}-validate-with-query") end end