Class: UV::Http::Headers

Inherits:
Hash
  • Object
show all
Defined in:
lib/uv-rays/http/parser.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



20
21
22
# File 'lib/uv-rays/http/parser.rb', line 20

def body
  @body
end

#cookiesObject

Cookies at the time of the request



16
17
18
# File 'lib/uv-rays/http/parser.rb', line 16

def cookies
  @cookies
end

#http_versionObject

The HTTP version returned



7
8
9
# File 'lib/uv-rays/http/parser.rb', line 7

def http_version
  @http_version
end

#keep_aliveObject

Returns the value of attribute keep_alive.



18
19
20
# File 'lib/uv-rays/http/parser.rb', line 18

def keep_alive
  @keep_alive
end

#reason_phraseObject

The text after the status code



13
14
15
# File 'lib/uv-rays/http/parser.rb', line 13

def reason_phrase
  @reason_phrase
end

#statusObject

The status code (as an integer)



10
11
12
# File 'lib/uv-rays/http/parser.rb', line 10

def status
  @status
end

Instance Method Details

#to_sObject Also known as: inspect



22
23
24
# File 'lib/uv-rays/http/parser.rb', line 22

def to_s
    "HTTP#{http_version} #{status} - keep alive: #{keep_alive}\nheaders: #{super}\nbody: #{body}"
end