Method: ActiveDirectory::Base#update_attribute

Defined in:
lib/active_directory/base.rb

#update_attribute(name, value) ⇒ Object

Updates a single attribute (name) with one or more values (value), by immediately contacting the Active Directory server and initiating the update remotely.

Entries are always reloaded (via Base.reload) after calling this method.



253
254
255
# File 'lib/active_directory/base.rb', line 253

def update_attribute(name, value)
  update_attributes(name.to_s => value)
end