diff options
| -rw-r--r-- | lib/zero/response.rb | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/lib/zero/response.rb b/lib/zero/response.rb index 582c0e9..ab4acde 100644 --- a/lib/zero/response.rb +++ b/lib/zero/response.rb @@ -1,8 +1,11 @@  module Zero    # This is the representation of a response    class Response +    # the status code of the response      attr_reader :status +    # the body of the response      attr_reader :body +    # set or get current headers      attr_accessor :header      # Constructor | 
