Class Locale
has 42 methods (exceeds 20 allowed). Consider refactoring. Open
class Locale
class << self
# http://unicode.org/reports/tr35/tr35-9.html#Likely_Subtags
#
Method identify_subtag
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
def identify_subtag(subtag)
[].tap do |types|
types << :language if language?(subtag)
types << :script if script?(subtag)
types << :region if region?(subtag)
- 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 normalize
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def normalize(locale_text)
Locale.new(nil).tap do |locale|
subtags = identify_subtags(locale_text)
until subtags.empty?
- 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 initialize
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def initialize(language, script = nil, region = nil, variants = [])
@language = language ? language.to_s : nil
@script = script ? script.to_s : nil
@region = region ? region.to_s : nil
@variants = Array(variants)
- 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"