Top Level Namespace
Defined Under Namespace
Modules: LucidHttp
Instance Method Summary collapse
- #body ⇒ Object
- #content_type ⇒ Object
- #error ⇒ Object
- #path ⇒ Object
- #response ⇒ Object
- #status ⇒ Object
- #url ⇒ Object
- #verb ⇒ Object
Instance Method Details
#body ⇒ Object
64 65 66 |
# File 'lib/lucid_http.rb', line 64 def body response.body end |
#content_type ⇒ Object
76 77 78 |
# File 'lib/lucid_http.rb', line 76 def content_type response.content_type end |
#error ⇒ Object
88 89 90 |
# File 'lib/lucid_http.rb', line 88 def error response.error end |
#path ⇒ Object
84 85 86 |
# File 'lib/lucid_http.rb', line 84 def path response.path end |
#response ⇒ Object
60 61 62 |
# File 'lib/lucid_http.rb', line 60 def response @__response end |
#status ⇒ Object
72 73 74 |
# File 'lib/lucid_http.rb', line 72 def status response.status end |
#url ⇒ Object
80 81 82 |
# File 'lib/lucid_http.rb', line 80 def url response.url end |
#verb ⇒ Object
68 69 70 |
# File 'lib/lucid_http.rb', line 68 def verb response.verb end |