Open
Description
In a RESTful API, you'll use the same path multiple times, but with a different REST verb.
These will return the same endpoint:
GET /orders
POST /orders
So will these:
GET /orders/123
PUT /orders/123
DELETE /orders/123
Ideally, we'd be able to pass that in as an option:
API.recognize_path('/orders/123', method: 'PUT')