KentaaNL/tikkie-api

View on GitHub
lib/tikkie/api/request.rb

Summary

Maintainability
A
2 hrs
Test Coverage

Showing 2 of 2 total issues

Method request has 33 lines of code (exceeds 25 allowed). Consider refactoring.
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']
Severity: Minor
Found in lib/tikkie/api/request.rb - About 1 hr to fix

    Method request has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    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']
    Severity: Minor
    Found in lib/tikkie/api/request.rb - About 55 mins to fix
    Category
    Status