method
deprecated_method_warning
v4.0.2 -
Show latest stable
- Class:
ActiveSupport::Deprecation::Reporting
deprecated_method_warning(method_name, message = nil)private
Outputs a deprecation warning message
ActiveSupport::Deprecation.deprecated_method_warning(:method_name) # => "method_name is deprecated and will be removed from Rails #{deprecation_horizon}" ActiveSupport::Deprecation.deprecated_method_warning(:method_name, :another_method) # => "method_name is deprecated and will be removed from Rails #{deprecation_horizon} (use another_method instead)" ActiveSupport::Deprecation.deprecated_method_warning(:method_name, "Optional message") # => "method_name is deprecated and will be removed from Rails #{deprecation_horizon} (Optional message)"