diff options
author | Gibheer <gibheer@gmail.com> | 2012-11-13 21:26:45 +0100 |
---|---|---|
committer | Gibheer <gibheer@gmail.com> | 2012-11-13 21:26:45 +0100 |
commit | ff46b368ed340642e3f29c7c8f95899209978406 (patch) | |
tree | aa553c193857c74d8b3bf6cebe8473db759ca5aa /lib/zero/request.rb | |
parent | 95cb897c073eeb64f0faf3ea2537635759a6b27a (diff) |
added comments for the constants
Diffstat (limited to 'lib/zero/request.rb')
-rw-r--r-- | lib/zero/request.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/zero/request.rb b/lib/zero/request.rb index 6f478df..00ef1bb 100644 --- a/lib/zero/request.rb +++ b/lib/zero/request.rb @@ -59,9 +59,17 @@ module Zero private + # constant for the content type key + # @api private CONST_CONTENT_TYPE = 'CONTENT_TYPE' + # constant for the http accept key + # @api private CONST_HTTP_ACCEPT = 'HTTP_ACCEPT' + # constant for the path info key + # @api private CONST_PATH_INFO = 'PATH_INFO' + # constant for the request method key + # @api private CONST_REQUEST_METHOD = 'REQUEST_METHOD' end end |