method

deprecated_callback_method

rails latest stable - Class: ActiveRecord::Callbacks

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.

deprecated_callback_method(symbol)
public

No documentation available.

# File activerecord/lib/active_record/callbacks.rb, line 263
    def deprecated_callback_method(symbol) #:nodoc:
      if respond_to?(symbol, true)
        ActiveSupport::Deprecation.warn("Overwriting #{symbol} in your models has been deprecated, please use Base##{symbol} :method_name instead")
        send(symbol)
      end
    end