You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some libraries use lower case httpMethod names for method calls. For
example, Ruby's Faraday library uses 'get', 'put', 'post', 'delete'.
Rather than this unweildy Ruby code produced by a mustache template:
self.send("GET".downcase, path, request_opts)
This patch would allow for a more tidy output such as:
get(path, request_opts)
0 commit comments