Class: Veeqo::Request
- Inherits:
-
Object
- Object
- Veeqo::Request
- Defined in:
- lib/veeqo/request.rb
Instance Method Summary collapse
-
#initialize(http_method, path, attributes = {}) ⇒ Request
constructor
A new instance of Request.
- #parse ⇒ Object
- #run ⇒ Object
Constructor Details
#initialize(http_method, path, attributes = {}) ⇒ Request
Returns a new instance of Request.
8 9 10 11 12 |
# File 'lib/veeqo/request.rb', line 8 def initialize(http_method, path, attributes = {}) @path = path @http_method = http_method @attributes = attributes end |