# File lib/rack/utils.rb, line 430 430: def status_code(status) 431: if status.is_a?(Symbol) 432: SYMBOL_TO_STATUS_CODE[status] || 500 433: else 434: status.to_i 435: end 436: end