message()
public
Returns the corresponding message for the current
HTTP status code:
response.status = 200
response.message
response.status = 404
response.message
# File actionpack/lib/action_dispatch/http/response.rb, line 309
def message
Rack::Utils::HTTP_STATUS_CODES[@status]
end