Method: Point::Request#initialize
- Defined in:
- lib/point/request.rb
#initialize(path, method = :get) ⇒ Request
Returns a new instance of Request.
7 8 9 10 |
# File 'lib/point/request.rb', line 7 def initialize(path, method = :get) @path = path @method = method end |