This rule encourages the use of symbolic representations of HTTP status codes over their numeric counterparts, making the code more self-explanatory and easier to understand. Numeric HTTP status codes can be cryptic and hard to remember, especially for developers who are not familiar with them.
To adhere to this rule, simply replace the numeric HTTP status code with its symbolic equivalent in your code. For example, instead of using 403 for a forbidden request, use :forbidden.
Non-Compliant Code Examples
classApplicationController<ActionController::Basedefaccess_deniedrenderstatus:403# Avoid using numeric HTTP status codeendend