Class: Rack::Response::Raw
- Inherits:
-
Object
- Object
- Rack::Response::Raw
show all
- Includes:
- Helpers
- Defined in:
- lib/rack/response.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Methods included from Helpers
#accepted?, #add_header, #bad_request?, #cache!, #cache_control, #cache_control=, #client_error?, #content_length, #content_type, #content_type=, #created?, #delete_cookie, #do_not_cache!, #etag, #etag=, #forbidden?, #include?, #informational?, #invalid?, #location, #location=, #media_type, #media_type_params, #method_not_allowed?, #moved_permanently?, #no_content?, #not_acceptable?, #not_found?, #ok?, #precondition_failed?, #redirect?, #redirection?, #request_timeout?, #server_error?, #set_cookie, #set_cookie_header, #set_cookie_header=, #successful?, #unauthorized?, #unprocessable?
Constructor Details
#initialize(status, headers) ⇒ Raw
381
382
383
384
|
# File 'lib/rack/response.rb', line 381
def initialize(status, )
@status = status
=
end
|
Instance Attribute Details
Returns the value of attribute headers.
378
379
380
|
# File 'lib/rack/response.rb', line 378
def
end
|
#status ⇒ Object
Returns the value of attribute status.
379
380
381
|
# File 'lib/rack/response.rb', line 379
def status
@status
end
|
Instance Method Details
398
399
400
|
# File 'lib/rack/response.rb', line 398
def (key)
.delete(key)
end
|
390
391
392
|
# File 'lib/rack/response.rb', line 390
def (key)
[key]
end
|
386
387
388
|
# File 'lib/rack/response.rb', line 386
def (key)
.key?(key)
end
|
394
395
396
|
# File 'lib/rack/response.rb', line 394
def (key, value)
[key] = value
end
|