DN | = | DistinguishedName |
GetText | = | GetTextFallback |
LDIF | = | Ldif |
XML | = | Xml |
VERSION | = | "1.0.9" |
# File lib/active_ldap/base.rb, line 49 49: def const_missing(id) 50: case id 51: when :ConnectionNotEstablished 52: message = 53: _("ActiveLdap::ConnectionNotEstablished has been deprecated " \ 54: "since 1.1.0. " \ 55: "Please use ActiveLdap::ConnectionNotSetup instead.") 56: ActiveSupport::Deprecation.warn(message) 57: const_set("ConnectionNotEstablished", ConnectionNotSetup) 58: ConnectionNotEstablished 59: else 60: super 61: end 62: end