提交 391f2543 编写于 作者: J José Valim

Properly show middlewares on rake about.

上级 622e3dda
......@@ -51,9 +51,12 @@ def freeze_edge_version
def to_s
column_width = properties.names.map {|name| name.length}.max
["About your application's environment", *properties.map do |property|
"%-#{column_width}s %s" % property
end] * "\n"
info = properties.map do |name, value|
value = value.join(", ") if value.is_a?(Array)
"%-#{column_width}s %s" % [name, value]
end
info.unshift "About your application's environment"
info * "\n"
end
alias inspect to_s
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册