Sha256: 79f2c2614b0950300efbed83eef37597396d29b5dbb0f1cd48d3a60f0592a6a6
Contents?: true
Size: 693 Bytes
Versions: 8
Compression:
Stored size: 693 Bytes
Contents
module ActiveLDAP # Configuration # # Configuration provides the default settings required for # ActiveLDAP to work with your LDAP server. All of these # settings can be passed in at initialization time. module Configuration @@host = "localhost" @@port = 389 @@bind_format = "uid=%s,ou=People,dc=dataspill,dc=org" # Make the return value the string that is your LDAP base def Base.base 'dc=dataspill,dc=org' end # This is optionally set to the array of objectClass names # that are minimally required for EVERY object on your LDAP server. # If you don't want one, set this to []. def Base.required_classes ['top'] end end end
Version data entries
8 entries across 8 versions & 1 rubygems