ruby: 将 http 响应代码转换为它的含义

ruby: convert http response codes to it's meaning

如何将 http 响应代码转换为 ruby/rails 中的含义。 我尝试了(虚构的).to_words 方法但没有成功

(byebug) resp.code
201
(byebug) resp.code.to_words
"201 Created"

尝试

Rack::Utils::HTTP_STATUS_CODES[200]