feelobot/gantree

View on GitHub

Showing 11 of 13 total issues

Method create has 42 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def create
    "#{@requirements}
    template do 
      value :AWSTemplateFormatVersion => '2010-09-09'
      value :Description => '#{@stack_name} Master Template'
Severity: Minor
Found in lib/gantree/cfn/master.rb - About 1 hr to fix

    Method deploy has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def deploy(envs)
          @envs = envs
          check_dir_name(envs) unless @options[:force]
          return if @options[:dry_run]
          version = DeployVersion.new(@options, envs[0])
    Severity: Minor
    Found in lib/gantree/deploy.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 configuration_template has 36 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      def configuration_template
        "resource 'ConfigurationTemplate', :Type => 'AWS::ElasticBeanstalk::ConfigurationTemplate', :Properties => {
            :ApplicationName => ref('Application'),
            :SolutionStackName => '#{@docker_version}',
            :Description => 'Default Configuration Version #{@docker_version} - with SSH access',
    Severity: Minor
    Found in lib/gantree/cfn/beanstalk.rb - About 1 hr to fix

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

          def build
            puts "Building..."
            
            if system("git rev-parse --short HEAD > version.txt")
              puts "Outputting short hash to version.txt"
      Severity: Minor
      Found in lib/gantree/docker.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 check_credentials has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def check_credentials
            timeout = false
      
            url = URI.parse("http://169.254.169.254/latest/meta-data/iam/info/")
      
      
      Severity: Minor
      Found in lib/gantree/base.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 deploy has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def deploy(envs)
            @envs = envs
            check_dir_name(envs) unless @options[:force]
            return if @options[:dry_run]
            version = DeployVersion.new(@options, envs[0])
      Severity: Minor
      Found in lib/gantree/deploy.rb - About 1 hr to fix

        Method pull has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

            def pull
              puts "Updating wiki cached repo".colorize(:yellow)
              if File.exist?(@wiki_path)
                Dir.chdir(@wiki_path) do
                  execute("git checkout master") unless execute("git branch").include?("* master")
        Severity: Minor
        Found in lib/gantree/wiki.rb - About 55 mins 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 run has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

            def run input=""
              input = "y" if  @options[:force]
              input ||= ask "Are you sure? (y|n)"
              if input == "y" || @options[:force]
                puts "Deleting stack from aws"
        Severity: Minor
        Found in lib/gantree/delete.rb - About 55 mins 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 commits has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            def commits
              return @commits if @commits
              # Get commits for this release
              commits = git_log
              commits = commits.split("COMMIT_SEPARATOR")
        Severity: Minor
        Found in lib/gantree/release_notes.rb - About 45 mins 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 run has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def run
              @options[:rds_enabled] = rds_enabled? if @options[:rds] 
              print_options
              create_cfn_if_needed
              create_all_templates unless @options[:local]
        Severity: Minor
        Found in lib/gantree/create.rb - About 35 mins 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 check_for_updates has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def self.check_for_updates opts
              puts opts.inspect
              enabled =  opts[:auto_updates]
              #return if $0.include? "bin/gantree"
              latest_version = `gem search gantree | grep gantree | awk '{ print $2 }' | tr -d '()'`.strip
        Severity: Minor
        Found in lib/gantree/base.rb - About 25 mins 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

        Severity
        Category
        Status
        Source
        Language