jamesrwhite/minicron

View on GitHub
server/lib/minicron/cli/commands.rb

Summary

Maintainability
B
6 hrs
Test Coverage

Method add_db_cli_command has 49 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def self.add_db_cli_command(cli)
        cli.command :db do |c|
          c.syntax = 'minicron db [setup|migrate|version]'
          c.description = 'Sets up the minicron database schema.'

Severity: Minor
Found in server/lib/minicron/cli/commands.rb - About 1 hr to fix

    Method add_server_cli_command has 48 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          def self.add_server_cli_command(cli)
            cli.command :server do |c|
              c.syntax = 'minicron server [start|stop|restart|status]'
              c.description = 'Controls the minicron server.'
              c.option '--host STRING', String, "The host for the server to listen on. Default: #{Minicron.config['server']['host']}"
    Severity: Minor
    Found in server/lib/minicron/cli/commands.rb - About 1 hr to fix

      Method add_server_cli_command has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

            def self.add_server_cli_command(cli)
              cli.command :server do |c|
                c.syntax = 'minicron server [start|stop|restart|status]'
                c.description = 'Controls the minicron server.'
                c.option '--host STRING', String, "The host for the server to listen on. Default: #{Minicron.config['server']['host']}"
      Severity: Minor
      Found in server/lib/minicron/cli/commands.rb - About 1 hr to fix

      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 add_db_cli_command has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

            def self.add_db_cli_command(cli)
              cli.command :db do |c|
                c.syntax = 'minicron db [setup|migrate|version]'
                c.description = 'Sets up the minicron database schema.'
      
      
      Severity: Minor
      Found in server/lib/minicron/cli/commands.rb - About 1 hr to fix

      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

      There are no issues that match your filters.

      Category
      Status