module ActiveLdap::Operations::LDIF::AddRecordLoadable

def load(operator, options)

def load(operator, options)
  entries = attributes.collect do |key, value|
    [:add, key, value]
  end
  options = {:controls => controls}.merge(options)
  operator.modify_entry(dn, entries, options)
end