提交 ddd804e8 编写于 作者: R Rafael Mendonça França

Merge pull request #7204 from frodsan/update_conventions

Follow code conventions in metal/live
......@@ -47,13 +47,13 @@ def write(string)
def each
while str = @buf.pop
yield str
yield(str)
end
end
def close
super
@buf.push nil
@buf.push(nil)
end
end
......@@ -78,7 +78,7 @@ def to_hash
end
def initialize(status = 200, header = {}, body = [])
header = Header.new self, header
header = Header.new(self, header)
super(status, header, body)
end
......@@ -89,11 +89,11 @@ def commit!
private
def build_buffer(response, body)
buf = Live::Buffer.new response
body.each { |part| buf.write part }
buf
end
def build_buffer(response, body)
buf = Live::Buffer.new(response)
body.each { |part| buf.write(part) }
buf
end
end
def process(name)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册