Showing 4 of 4 total issues
Method symbolize_keys
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
def self.symbolize_keys(hash)
hash.inject({}) do |result, (key, value)|
result.merge!(Hash[
case key
when String then key.to_sym
- 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 server
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
def self.server
Rack::Builder.new do
use Rack::Lint
use Rack::Runtime
use Rack::MethodOverride
Method check_required_params
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
def check_required_params(params)
params.each do |param, options|
if @env['hyperdrive.resource'].required?(param, @env['REQUEST_METHOD'])
if @env['hyperdrive.params'].key?(param)
if @env['hyperdrive.params'][param] == ''
- 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 call
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def call(env)
@app.call(env)
rescue => e
error_message = "#{e.class}: #{e.message}"
$stdout.sync = true
- 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"