module ActiveLdap::Operations::LDIF::ModifyRecordLoadable::ReplaceOperationModifiable
Public Instance Methods
Source
# File lib/active_ldap/operations.rb, line 492 def to_modify_entries return [[:replace, full_attribute_name, []]] if attributes.empty? attributes.collect do |key, value| [:replace, key, value] end end