Module: ActiveRecord::Callbacks::ClassMethods

Defined in:
lib/active_record/callbacks.rb

Instance Method Summary collapse

Instance Method Details

#method_added(meth) ⇒ Object



250
251
252
253
254
255
256
# File 'lib/active_record/callbacks.rb', line 250

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