| VERSION | = | "1.2.2" |
| GetText | = | GetTextFallback |
| XML | = | Xml |
| DN | = | DistinguishedName |
| LDIF | = | Ldif |
# 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