update coding conventions in metal/live

This commit is contained in:
Francesco Rodriguez 2012-07-30 17:08:05 -05:00
parent f6068f1df7
commit 5906881c96

@ -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)