Module: ActiveLdap::Callbacks::ClassMethods

Defined in:
lib/active_ldap/callbacks.rb,
lib/active_ldap/callbacks.rb

Instance Method Summary collapse

Instance Method Details

#instantiate_with_callbacks(record) ⇒ Object



37
38
39
40
41
42
# File 'lib/active_ldap/callbacks.rb', line 37

def instantiate_with_callbacks(record)
  object = instantiate_without_callbacks(record)
  object.run_callbacks(:find)
  object.run_callbacks(:initialize)
  object
end

#method_added(meth) ⇒ Object



27
28
29
30
31
32
33
# File 'lib/active_ldap/callbacks.rb', line 27

def method_added(meth)
  super
  if CALLBACKS.include?(meth.to_sym)
    ActiveSupport::Deprecation.warn("Base##{meth} has been deprecated, please use Base.#{meth} :method instead", caller[0,1])
    send(meth.to_sym, meth.to_sym)
  end
end