Showing 10 of 14 total issues
File holdings.rb
has 298 lines of code (exceeds 250 allowed). Consider refactoring. Open
require "toml"
require "pastel"
require "tty-config"
require "tty-prompt"
require "tty-spinner"
Method execute
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring. Open
def execute(input: $stdin, output: $stdout)
config_saved = config.exist?
if config_saved && @options["edit"]
editor.open(config.source_file)
return
- 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 execute
has 65 lines of code (exceeds 25 allowed). Consider refactoring. Open
def execute(input: $stdin, output: $stdout)
config_saved = config.exist?
if config_saved && @options["edit"]
editor.open(config.source_file)
return
Method setup_table
has 46 lines of code (exceeds 25 allowed). Consider refactoring. Open
def setup_table(raw_data, display_data)
base = @options.fetch("base", config.fetch("settings", "base")).upcase
total_buy = 0
total = 0
to_symbol = nil
Method setup_table
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
def setup_table(raw_data, display_data)
table = TTY::Table.new(header: [
{ value: "Coin", alignment: :left },
"Price",
"Chg. 24H",
Method create_pie_charts
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
def create_pie_charts(raw_data, display_data)
colors = %i[yellow blue green cyan magenta red]
radius = @options["pie"].to_i > 0 ? @options["pie"].to_i : DEFAULT_PIE_RADIUS
base = @options.fetch("base", config.fetch("settings", "base")).upcase
to_symbol = nil
Method setup_portfolio
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
def setup_portfolio(input, output)
output.print "\nCurrently you have no investments setup...\n" \
"Let's change that and create your altfolio!\n\n"
prompt = create_prompt(input, output)
Method display_coins
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def display_coins(output, names, overridden_settings)
response = Fetcher.fetch_prices(names.join(","),
overridden_settings["base"].upcase,
overridden_settings)
return unless response
- 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 execute
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def execute(output: $stdout)
pager = TTY::Pager.new(output: output)
@spinner.auto_spin
if @options["watch"]
- 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 execute
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def execute(input: $stdin, output: $stdout)
pager = TTY::Pager.new(output: output)
@spinner.auto_spin
if @options["watch"]
- 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"