From e6e3b0bd2721f288a9795533f975e8995222396c Mon Sep 17 00:00:00 2001 From: Stormwind Date: Sun, 18 Nov 2012 16:24:50 +0100 Subject: [PATCH] Add some TODOs No change in behaviour --- lib/zero/response.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/zero/response.rb b/lib/zero/response.rb index 0981261..74b2e28 100644 --- a/lib/zero/response.rb +++ b/lib/zero/response.rb @@ -6,7 +6,7 @@ module Zero attr_reader :status attr_accessor :header, :body - # Construtor + # Constructor # Sets default status code to 200. # def initialize @@ -31,6 +31,10 @@ module Zero # @return [Array] # def to_a() + # TODO Remove content length and body, on certain status codes + # TODO Set content length, if not already set + # TODO Set content type, if not already set + [@status, @header, @body] end