Showing 6 of 6 total issues
Method request
has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring. Open
def request(verb, url, opts = {})
url = connection.build_url(url).to_s
begin
response = connection.run_request(verb, url, opts[:body], opts[:headers]) do |req|
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method request
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
def request(verb, url, opts = {})
url = connection.build_url(url).to_s
begin
response = connection.run_request(verb, url, opts[:body], opts[:headers]) do |req|
- Create a ticketCreate a ticket
Method get_token
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def get_token(params, access_token_opts = {}, access_token_class = AccessToken)
params = params.map do |key, value|
if RESERVED_PARAM_KEYS.include?(key)
[key.to_sym, value]
else
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method get_token
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
def get_token(params, access_token_opts = {}, access_token_class = AccessToken)
params = params.map do |key, value|
if RESERVED_PARAM_KEYS.include?(key)
[key.to_sym, value]
else
- Create a ticketCreate a ticket
Method initialize
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def initialize(client, token, opts = {})
@client = client
@token = token.to_s
opts = opts.dup
%i[refresh_token expires_in expires_at expires_latency].each do |arg|
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method configure_authentication!
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def configure_authentication!(opts)
case options[:mode]
when :header
opts[:headers] ||= {}
opts[:headers].merge!(headers)
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"