module ActiveLdap::Callbacks::ClassMethods

Public Instance Methods

method_added(meth) click to toggle source
Calls superclass method
# File lib/active_ldap/callbacks.rb, line 26
def method_added(meth)
  super
  if CALLBACKS.include?(meth.to_sym)
    ActiveLdap.deprecator.warn("Base##{meth} has been deprecated, please use Base.#{meth} :method instead", caller[0,1])
    send(meth.to_sym, meth.to_sym)
  end
end