Sha256: 2a3f1becba9c1eb27f423322cc34600738f1a604913ce327e98ffbfa6e5ffdfa
Contents?: true
Size: 1.01 KB
Versions: 5
Compression:
Stored size: 1.01 KB
Contents
module Strava module Web module Request def get(path, options = {}) request(:get, path, options) end def post(path, options = {}) request(:post, path, options) end def put(path, options = {}) request(:put, path, options) end def delete(path, options = {}) request(:delete, path, options) end private def request(method, path, options) options = options.dup if options.key?(:request) || options.key?(:endpoint) root = options.delete(:endpoint) || endpoint path = [root, path].join('/') response = connection.send(method) do |request| case method when :get, :delete request.url(path, options) when :post, :put request.path = path request.body = options unless options.empty? end request.options.merge!(options.delete(:request)) if options.key?(:request) end response.body end end end end
Version data entries
5 entries across 5 versions & 1 rubygems