Showing 7 of 13 total issues
Class Base
has 163 methods (exceeds 20 allowed). Consider refactoring. Open
class Base
extend ActiveModel::Naming
extend ActiveModel::Translation
extend Authlogic::Config
include ActiveSupport::Callbacks
File base.rb
has 1043 lines of code (exceeds 250 allowed). Consider refactoring. Open
require "request_store"
module Authlogic
module Session
module Activation
Method credentials=
has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring. Open
def credentials=(value)
normalized = Array.wrap(value)
if normalized.first.class.name == "ActionController::Parameters"
raise TypeError, E_AC_PARAMETERS
end
- 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 credentials=
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
def credentials=(value)
normalized = Array.wrap(value)
if normalized.first.class.name == "ActionController::Parameters"
raise TypeError, E_AC_PARAMETERS
end
Method valid_password?
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
def valid_password?(
attempted_password,
check_against_database = check_passwords_against_database?
)
crypted = crypted_password_to_validate_against(check_against_database)
- 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 save
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def save
result = nil
if valid?
self.record = attempted_record
- 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 define_login_field_methods
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def define_login_field_methods
return unless login_field
self.class.send(:attr_writer, login_field) unless respond_to?("#{login_field}=")
self.class.send(:attr_reader, login_field) unless respond_to?(login_field)
end
- 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"