Flowdock
method

deprecated_method_warning

Importance_2
v4.0.2 - Show latest stable - 0 notes - Class: 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)"
Show source
Register or log in to add new notes.