0
0
Fork 0

Add some TODOs

No change in behaviour
This commit is contained in:
Stormwind 2012-11-18 16:24:50 +01:00
parent 3ff56d815a
commit e6e3b0bd27
1 changed files with 5 additions and 1 deletions

View File

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