orange-cloudfoundry/cf-ops-automation

View on GitHub
lib/pipeline_helpers.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

PipelineHelpers has no descriptive comment
Open

module PipelineHelpers
Severity: Minor
Found in lib/pipeline_helpers.rb by reek

Classes and modules are the units of reuse and release. It is therefore considered good practice to annotate every class and module with a brief comment outlining its responsibilities.

Example

Given

class Dummy
  # Do things...
end

Reek would emit the following warning:

test.rb -- 1 warning:
  [1]:Dummy has no descriptive comment (IrresponsibleModule)

Fixing this is simple - just an explaining comment:

# The Dummy class is responsible for ...
class Dummy
  # Do things...
end

PipelineHelpers#git_resource_selected_paths performs a nil-check
Open

      paths << '.gitmodules' unless opts[:git_submodules].nil? || opts[:git_submodules].empty?
Severity: Minor
Found in lib/pipeline_helpers.rb by reek

A NilCheck is a type check. Failures of NilCheck violate the "tell, don't ask" principle.

Additionally, type checks often mask bigger problems in your source code like not using OOP and / or polymorphism when you should.

Example

Given

class Klass
  def nil_checker(argument)
    if argument.nil?
      puts "argument isn't nil!"
    end
  end
end

Reek would emit the following warning:

test.rb -- 1 warning:
  [3]:Klass#nil_checker performs a nil-check. (NilCheck)

Use empty lines between method definitions.
Open

    def generate_vars_files_without_versions(config_dir, pipeline_name)
Severity: Minor
Found in lib/pipeline_helpers.rb by rubocop

This cop checks whether method definitions are separated by one empty line.

NumberOfEmptyLines can be and integer (e.g. 1 by default) or an array (e.g. [1, 2]) to specificy a minimum and a maximum of empty lines.

AllowAdjacentOneLineDefs can be used to configure is adjacent one line methods definitions are an offense

Example:

# bad
def a
end
def b
end

Example:

# good
def a
end

def b
end

Extra blank line detected.
Open


    def generate_pipeline_credentials_filename(config_dir, pipeline_name)
Severity: Minor
Found in lib/pipeline_helpers.rb by rubocop

This cops checks for two or more consecutive blank lines.

Example:

# bad - It has two empty lines.
some_method
# one empty line
# two empty lines
some_method

# good
some_method
# one empty line
some_method

There are no issues that match your filters.

Category
Status