lib/tikkie/api/request.rb
Showing 2 of 2 total issues
Method request
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
def request(http_method, path, params = {}, body = {}) uri = URI.join(config.api_url, path) uri.query = URI.encode_www_form(params) unless params.empty? logger.debug("[Tikkie] Request: #{http_method.upcase} #{uri}") if ENV['TIKKIE_DEBUG']
Method request
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
def request(http_method, path, params = {}, body = {}) uri = URI.join(config.api_url, path) uri.query = URI.encode_www_form(params) unless params.empty? logger.debug("[Tikkie] Request: #{http_method.upcase} #{uri}") if ENV['TIKKIE_DEBUG']
- Read upRead up