Class: Rack::Response::Raw
- Inherits:
-
Object
- Object
- Rack::Response::Raw
- Includes:
- Helpers
- Defined in:
- lib/rack/response.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#status ⇒ Object
Returns the value of attribute status.
Instance Method Summary collapse
- #delete_header(key) ⇒ Object
- #get_header(key) ⇒ Object
- #has_header?(key) ⇒ Boolean
-
#initialize(status, headers) ⇒ Raw
constructor
A new instance of Raw.
- #set_header(key, v) ⇒ Object
Methods included from Helpers
#accepted?, #add_header, #bad_request?, #cache_control, #cache_control=, #client_error?, #content_length, #content_type, #created?, #delete_cookie, #etag, #etag=, #forbidden?, #include?, #informational?, #invalid?, #location, #location=, #media_type, #media_type_params, #method_not_allowed?, #moved_permanently?, #no_content?, #not_found?, #ok?, #precondition_failed?, #redirect?, #redirection?, #server_error?, #set_cookie, #set_cookie_header, #set_cookie_header=, #successful?, #unauthorized?, #unprocessable?
Constructor Details
#initialize(status, headers) ⇒ Raw
Returns a new instance of Raw.
224 225 226 227 |
# File 'lib/rack/response.rb', line 224 def initialize status, headers @status = status @headers = headers end |
Instance Attribute Details
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
221 222 223 |
# File 'lib/rack/response.rb', line 221 def headers @headers end |
#status ⇒ Object
Returns the value of attribute status.
222 223 224 |
# File 'lib/rack/response.rb', line 222 def status @status end |
Instance Method Details
#delete_header(key) ⇒ Object
232 |
# File 'lib/rack/response.rb', line 232 def delete_header(key); headers.delete key; end |
#get_header(key) ⇒ Object
230 |
# File 'lib/rack/response.rb', line 230 def get_header(key); headers[key]; end |
#has_header?(key) ⇒ Boolean
229 |
# File 'lib/rack/response.rb', line 229 def has_header?(key); headers.key? key; end |
#set_header(key, v) ⇒ Object
231 |
# File 'lib/rack/response.rb', line 231 def set_header(key, v); headers[key] = v; end |