Showing 3 of 3 total issues
Method optional_post_params
has a Cognitive Complexity of 37 (exceeds 5 allowed). Consider refactoring. Open
def optional_post_params
{}.tap do |optional_params|
optional_params['BillingAddress2'] = billing_address.address_2 if billing_address.address_2.present?
optional_params['BillingState'] = billing_address.state if billing_address.state.present?
optional_params['BillingPhone'] = billing_address.phone if billing_address.phone.present?
- Read upRead up
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 from_response_body
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def self.from_response_body(response_body)
attributes = {}
response_body.each_line do |line|
key, value = line.split('=', 2)
- Read upRead up
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 post
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def post
parsed_uri = URI.parse(url)
request = Net::HTTP::Post.new(parsed_uri.request_uri)
request.form_data = post_params
- Read upRead up
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"