Showing 6 of 6 total issues
Method parse
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
def self.parse(argv_opts = [], unit_testing = false)
opt_parse = DevTools::OptParse.new({ name: PROGRAM_NAME,
version: VERSION,
testing: unit_testing,
defaults: default_options })
Method split_story
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def split_story(description)
raise RuntimeError, "description cannot be blank" unless description
stories = []
story_pattern = /\[?(((SRMPRT|OSMCLOUD)\-\d+)|NO-JIRA)\]?[,:\-\s]?\s*(.*)$/m
- 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 run!
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def self.run!
begin
opts = OptParse.parse ARGV
rescue => error
puts error
- 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 _get_stories
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def _get_stories(branches = @branches)
git = Git.new(@directory)
branches.to_a.each do |branch|
puts "checking #{branch}" if @options.debug
- 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 _get_includes
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def _get_includes(includes_file)
lines = []
if includes_file && File.exist?(includes_file)
File.open(includes_file, 'r') do |f|
f.each_line { |line| lines << $1 if line =~ /(\w+\-\d+)/ }
- 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 parse
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def self.parse(argv_opts = [], unit_testing = false)
opt_parse = DevTools::OptParse.new({ name: PROGRAM_NAME,
version: VERSION,
testing: unit_testing,
defaults: default_options })
- 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"