Namespace

Included Modules

Class/Module Index [+]

Quicksearch

ActiveLdap

Constants

DN
GetText
LDIF
VERSION
XML

Public Class Methods

const_missing(id) click to toggle source
# File lib/active_ldap/base.rb, line 49
def const_missing(id)
  case id
  when :ConnectionNotEstablished
    message =
      _("ActiveLdap::ConnectionNotEstablished has been deprecated "              "since 1.1.0. "              "Please use ActiveLdap::ConnectionNotSetup instead.")
    ActiveSupport::Deprecation.warn(message)
    const_set("ConnectionNotEstablished", ConnectionNotSetup)
    ConnectionNotEstablished
  else
    super
  end
end
get_text_supported?() click to toggle source
# File lib/active_ldap/get_text_support.rb, line 3
def get_text_supported?
  not const_defined?(:GetTextFallback)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.