module ActiveLdap::Operations::Update

def add_entry(dn, attributes, options={})

def add_entry(dn, attributes, options={})
  unnormalized_attributes = attributes.collect do |key, value|
    [:add, key, unnormalize_attribute(key, value)]
  end
  options[:connection] ||= connection
  options[:connection].add(dn, unnormalized_attributes, options)
end