class ActiveModel::Attribute

def initialize_dup(other)

def initialize_dup(other)
  if @value&.duplicable?
    @value = @value.dup
  end
end