module ActiveModel::Validations

def initialize_dup(other) # :nodoc:

:nodoc:
Clean the +Errors+ object if instance is duped.
def initialize_dup(other) # :nodoc:
  @errors = nil
  super
end