rambler-digital-solutions/Generamba

View on GitHub
lib/generamba/helpers/xcodeproj_helper.rb

Summary

Maintainability
C
7 hrs
Test Coverage

Class has too many lines. [133/100]
Open

  class XcodeprojHelper
    # Returns a PBXProject class for a given name
    # @param project_name [String] The name of the project file
    #
    # @return [Xcodeproj::Project]

This cop checks if the length a class exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Method retrieve_group_or_create_if_needed has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

    def self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, create_group_if_not_exists, group_is_logical = false)
      group_names = path_names_from_path(group_path)
      group_components_count = group_names.count
      group_names += path_names_from_path(file_group_path) if file_group_path

Severity: Minor
Found in lib/generamba/helpers/xcodeproj_helper.rb - About 3 hrs 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 has too many lines. [17/10]
Open

    def self.add_file_to_project_and_targets(project, targets_name, group_path, dir_path, file_group_path, file_name, root_path, file_is_resource = false)
      
      if root_path
          file_path = root_path
      else

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Method has too many lines. [17/10]
Open

    def self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, create_group_if_not_exists, group_is_logical = false)
      group_names = path_names_from_path(group_path)
      group_components_count = group_names.count
      group_names += path_names_from_path(file_group_path) if file_group_path

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Perceived complexity for retrieve_group_or_create_if_needed is too high. [9/7]
Open

    def self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, create_group_if_not_exists, group_is_logical = false)
      group_names = path_names_from_path(group_path)
      group_components_count = group_names.count
      group_names += path_names_from_path(file_group_path) if file_group_path

This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

Example:

def my_method                   # 1
  if cond                       # 1
    case var                    # 2 (0.8 + 4 * 0.2, rounded)
    when 1 then func_one
    when 2 then func_two
    when 3 then func_three
    when 4..10 then func_other
    end
  else                          # 1
    do_something until a && b   # 2
  end                           # ===
end                             # 7 complexity points

Cyclomatic complexity for retrieve_group_or_create_if_needed is too high. [8/6]
Open

    def self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, create_group_if_not_exists, group_is_logical = false)
      group_names = path_names_from_path(group_path)
      group_components_count = group_names.count
      group_names += path_names_from_path(file_group_path) if file_group_path

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

Perceived complexity for add_file_to_project_and_targets is too high. [9/7]
Open

    def self.add_file_to_project_and_targets(project, targets_name, group_path, dir_path, file_group_path, file_name, root_path, file_is_resource = false)
      
      if root_path
          file_path = root_path
      else

This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

Example:

def my_method                   # 1
  if cond                       # 1
    case var                    # 2 (0.8 + 4 * 0.2, rounded)
    when 1 then func_one
    when 2 then func_two
    when 3 then func_three
    when 4..10 then func_other
    end
  else                          # 1
    do_something until a && b   # 2
  end                           # ===
end                             # 7 complexity points

Cyclomatic complexity for add_file_to_project_and_targets is too high. [7/6]
Open

    def self.add_file_to_project_and_targets(project, targets_name, group_path, dir_path, file_group_path, file_name, root_path, file_is_resource = false)
      
      if root_path
          file_path = root_path
      else

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

Assignment Branch Condition size for retrieve_group_or_create_if_needed is too high. [16.55/15]
Open

    def self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, create_group_if_not_exists, group_is_logical = false)
      group_names = path_names_from_path(group_path)
      group_components_count = group_names.count
      group_names += path_names_from_path(file_group_path) if file_group_path

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Method add_file_to_project_and_targets has 8 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def self.add_file_to_project_and_targets(project, targets_name, group_path, dir_path, file_group_path, file_name, root_path, file_is_resource = false)
Severity: Major
Found in lib/generamba/helpers/xcodeproj_helper.rb - About 1 hr to fix

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

        def self.add_file_to_project_and_targets(project, targets_name, group_path, dir_path, file_group_path, file_name, root_path, file_is_resource = false)
          
          if root_path
              file_path = root_path
          else
    Severity: Minor
    Found in lib/generamba/helpers/xcodeproj_helper.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 remove_file_from_build_phases has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def self.remove_file_from_build_phases(file_path, build_phases)
          return if build_phases.nil?
    
          build_phases.each do |build_phase|
            build_phase.files.each do |build_file|
    Severity: Minor
    Found in lib/generamba/helpers/xcodeproj_helper.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 retrieve_group_or_create_if_needed has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, create_group_if_not_exists, group_is_logical = false)
    Severity: Minor
    Found in lib/generamba/helpers/xcodeproj_helper.rb - About 45 mins to fix

      Method add_group_to_project has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def self.add_group_to_project(project, group_path, dir_path, directory_name, group_is_logical)
      Severity: Minor
      Found in lib/generamba/helpers/xcodeproj_helper.rb - About 35 mins to fix

        Avoid parameter lists longer than 5 parameters. [8/5]
        Open

            def self.add_file_to_project_and_targets(project, targets_name, group_path, dir_path, file_group_path, file_name, root_path, file_is_resource = false)

        This cop checks for methods with too many parameters. The maximum number of parameters is configurable. Keyword arguments can optionally be excluded from the total count.

        Avoid parameter lists longer than 5 parameters. [6/5]
        Open

            def self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, create_group_if_not_exists, group_is_logical = false)

        This cop checks for methods with too many parameters. The maximum number of parameters is configurable. Keyword arguments can optionally be excluded from the total count.

        Surrounding space missing for operator -.
        Open

                  if group_path != dir_path && index == group_components_count-1

        Checks that operators have space around them, except for ** which should not have surrounding space.

        Example:

        # bad
        total = 3*4
        "apple"+"juice"
        my_number = 38/4
        a ** b
        
        # good
        total = 3 * 4
        "apple" + "juice"
        my_number = 38 / 4
        a**b

        private (on line 103) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
        Open

            def self.remove_file_by_file_path(file_path, targets_name, project)

        This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

        Example:

        # bad
        
        class C
          private
        
          def self.method
            puts 'hi'
          end
        end

        Example:

        # good
        
        class C
          def self.method
            puts 'hi'
          end
        
          private_class_method :method
        end

        Example:

        # good
        
        class C
          class << self
            private
        
            def method
              puts 'hi'
            end
          end
        end

        private (on line 103) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
        Open

            def self.resources_build_phase_from_targets(targets_name, project)

        This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

        Example:

        # bad
        
        class C
          private
        
          def self.method
            puts 'hi'
          end
        end

        Example:

        # good
        
        class C
          def self.method
            puts 'hi'
          end
        
          private_class_method :method
        end

        Example:

        # good
        
        class C
          class << self
            private
        
            def method
              puts 'hi'
            end
          end
        end

        Operator ? should be surrounded by a single space.
        Open

                  next_group = group_is_logical ?  final_group.new_group(group_name) : final_group.new_group(group_name, group_name)

        Checks that operators have space around them, except for ** which should not have surrounding space.

        Example:

        # bad
        total = 3*4
        "apple"+"juice"
        my_number = 38/4
        a ** b
        
        # good
        total = 3 * 4
        "apple" + "juice"
        my_number = 38 / 4
        a**b

        Line is too long. [107/80]
        Open

            # @param create_group_if_not_exists [TrueClass or FalseClass] If true nonexistent group will be created

        Rename is_compile_source? to compile_source?.
        Open

            def self.is_compile_source?(file_name)

        This cop makes sure that predicates are named properly.

        Example:

        # bad
        def is_even?(value)
        end
        
        # good
        def even?(value)
        end
        
        # bad
        def has_value?
        end
        
        # good
        def value?
        end

        Redundant self detected.
        Open

              if self.is_compile_source?(file_names.last)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Use 2 (not 0) spaces for indentation.
        Open

                  next_group = group_is_logical ?  final_group.new_group(group_name) : final_group.new_group(group_name, group_name)

        This cops checks for indentation that doesn't use the specified number of spaces.

        See also the IndentationConsistency cop which is the companion to this one.

        Example:

        # bad
        class A
         def test
          puts 'hello'
         end
        end
        
        # good
        class A
          def test
            puts 'hello'
          end
        end

        Example: IgnoredPatterns: ['^\s*module']

        # bad
        module A
        class B
          def test
          puts 'hello'
          end
        end
        end
        
        # good
        module A
        class B
          def test
            puts 'hello'
          end
        end
        end

        Trailing whitespace detected.
        Open

              

        private (on line 103) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
        Open

            def self.path_names_from_path(path)

        This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

        Example:

        # bad
        
        class C
          private
        
          def self.method
            puts 'hi'
          end
        end

        Example:

        # good
        
        class C
          def self.method
            puts 'hi'
          end
        
          private_class_method :method
        end

        Example:

        # good
        
        class C
          class << self
            private
        
            def method
              puts 'hi'
            end
          end
        end

        private (on line 103) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
        Open

            def self.remove_file_from_build_phases(file_path, build_phases)

        This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

        Example:

        # bad
        
        class C
          private
        
          def self.method
            puts 'hi'
          end
        end

        Example:

        # good
        
        class C
          def self.method
            puts 'hi'
          end
        
          private_class_method :method
        end

        Example:

        # good
        
        class C
          class << self
            private
        
            def method
              puts 'hi'
            end
          end
        end

        Line is too long. [116/80]
        Open

              module_group = self.retrieve_group_or_create_if_needed(group_path, nil, nil, project, false, group_is_logical)

        Line is too long. [112/80]
        Open

              File.extname(file_name) == '.m' || File.extname(file_name) == '.swift' || File.extname(file_name) == '.mm'

        Redundant self detected.
        Open

                build_phases = self.build_phases_from_targets(targets_name, project)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Redundant self detected.
        Open

              self.remove_file_from_build_phases(file_path, build_phases)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        private (on line 103) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
        Open

            def self.build_phases_from_targets(targets_name, project)

        This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

        Example:

        # bad
        
        class C
          private
        
          def self.method
            puts 'hi'
          end
        end

        Example:

        # good
        
        class C
          def self.method
            puts 'hi'
          end
        
          private_class_method :method
        end

        Example:

        # good
        
        class C
          class << self
            private
        
            def method
              puts 'hi'
            end
          end
        end

        private (on line 103) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
        Open

            def self.files_path_from_group(module_group, _project)

        This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

        Example:

        # bad
        
        class C
          private
        
          def self.method
            puts 'hi'
          end
        end

        Example:

        # good
        
        class C
          def self.method
            puts 'hi'
          end
        
          private_class_method :method
        end

        Example:

        # good
        
        class C
          class << self
            private
        
            def method
              puts 'hi'
            end
          end
        end

        Line is too long. [98/80]
        Open

            def self.add_group_to_project(project, group_path, dir_path, directory_name, group_is_logical)

        Line is too long. [85/80]
        Open

                build_phases = self.resources_build_phase_from_targets(targets_name, project)

        Use 2 (not 4) spaces for indentation.
        Open

                  file_path = dir_path

        This cops checks for indentation that doesn't use the specified number of spaces.

        See also the IndentationConsistency cop which is the companion to this one.

        Example:

        # bad
        class A
         def test
          puts 'hello'
         end
        end
        
        # good
        class A
          def test
            puts 'hello'
          end
        end

        Example: IgnoredPatterns: ['^\s*module']

        # bad
        module A
        class B
          def test
          puts 'hello'
          end
        end
        end
        
        # good
        module A
        class B
          def test
            puts 'hello'
          end
        end
        end

        private (on line 103) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
        Open

            def self.configure_file_ref_path(file_ref)

        This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

        Example:

        # bad
        
        class C
          private
        
          def self.method
            puts 'hi'
          end
        end

        Example:

        # good
        
        class C
          def self.method
            puts 'hi'
          end
        
          private_class_method :method
        end

        Example:

        # good
        
        class C
          class << self
            private
        
            def method
              puts 'hi'
            end
          end
        end

        Line is too long. [85/80]
        Open

            # @param file_is_resource [TrueClass or FalseClass] If true then file is resource

        Line is too long. [91/80]
        Open

              File.extname(resource_name) == '.xib' || File.extname(resource_name) == '.storyboard'

        Line is too long. [94/80]
        Open

              error_description = "Cannot find a target with name #{target_name} in Xcode project".red

        Redundant self detected.
        Open

              self.retrieve_group_or_create_if_needed(group_path, dir_path, directory_name, project, true, group_is_logical)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Redundant self detected.
        Open

              files_path = self.files_path_from_group(module_group, project)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Redundant self detected.
        Open

              module_group = self.retrieve_group_or_create_if_needed(group_path, nil, nil, project, false, group_is_logical)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Line is too long. [154/80]
        Open

            def self.add_file_to_project_and_targets(project, targets_name, group_path, dir_path, file_group_path, file_name, root_path, file_is_resource = false)

        Line is too long. [89/80]
        Open

            def self.module_with_group_path_already_exists(project, group_path, group_is_logical)

        Rename is_bundle_resource? to bundle_resource?.
        Open

            def self.is_bundle_resource?(resource_name)

        This cop makes sure that predicates are named properly.

        Example:

        # bad
        def is_even?(value)
        end
        
        # good
        def even?(value)
        end
        
        # bad
        def has_value?
        end
        
        # good
        def value?
        end

        Redundant self detected.
        Open

                self.remove_file_by_file_path(file_path, targets_name, project)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Redundant self detected.
        Open

                build_phases = self.resources_build_phase_from_targets(targets_name, project)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Redundant self detected.
        Open

                if file_is_resource || self.is_bundle_resource?(file_name)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Use 2 (not 4) spaces for indentation.
        Open

                  file_path = root_path

        This cops checks for indentation that doesn't use the specified number of spaces.

        See also the IndentationConsistency cop which is the companion to this one.

        Example:

        # bad
        class A
         def test
          puts 'hello'
         end
        end
        
        # good
        class A
          def test
            puts 'hello'
          end
        end

        Example: IgnoredPatterns: ['^\s*module']

        # bad
        module A
        class B
          def test
          puts 'hello'
          end
        end
        end
        
        # good
        module A
        class B
          def test
            puts 'hello'
          end
        end
        end

        Use 2 (not 4) spaces for indentation.
        Open

                      next_group = group_is_logical ? final_group.new_group(group_name) : final_group.new_group(group_name, dir_path, :project)

        This cops checks for indentation that doesn't use the specified number of spaces.

        See also the IndentationConsistency cop which is the companion to this one.

        Example:

        # bad
        class A
         def test
          puts 'hello'
         end
        end
        
        # good
        class A
          def test
            puts 'hello'
          end
        end

        Example: IgnoredPatterns: ['^\s*module']

        # bad
        module A
        class B
          def test
          puts 'hello'
          end
        end
        end
        
        # good
        module A
        class B
          def test
            puts 'hello'
          end
        end
        end

        private (on line 103) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
        Open

            def self.obtain_target(target_name, project)

        This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

        Example:

        # bad
        
        class C
          private
        
          def self.method
            puts 'hi'
          end
        end

        Example:

        # good
        
        class C
          def self.method
            puts 'hi'
          end
        
          private_class_method :method
        end

        Example:

        # good
        
        class C
          class << self
            private
        
            def method
              puts 'hi'
            end
          end
        end

        Line is too long. [135/80]
        Open

                      next_group = group_is_logical ? final_group.new_group(group_name) : final_group.new_group(group_name, dir_path, :project)

        Redundant self detected.
        Open

              elsif self.is_bundle_resource?(file_names.last)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Redundant self detected.
        Open

                xcode_target = self.obtain_target(target_name, project)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Useless private access modifier.
        Open

            private

        This cop checks for redundant access modifiers, including those with no code, those which are repeated, and leading public modifiers in a class or module body. Conditionally-defined methods are considered as always being defined, and thus access modifiers guarding such methods are not redundant.

        Example:

        class Foo
          public # this is redundant (default access is public)
        
          def method
          end
        
          private # this is not redundant (a method is defined)
          def method2
          end
        
          private # this is redundant (no following methods are defined)
        end

        Example:

        class Foo
          # The following is not redundant (conditionally defined methods are
          # considered as always defining a method)
          private
        
          if condition?
            def method
            end
          end
        
          protected # this is not redundant (method is defined)
        
          define_method(:method2) do
          end
        
          protected # this is redundant (repeated from previous modifier)
        
          [1,2,3].each do |i|
            define_method("foo#{i}") do
            end
          end
        
          # The following is redundant (methods defined on the class'
          # singleton class are not affected by the public modifier)
          public
        
          def self.method3
          end
        end

        Example:

        # Lint/UselessAccessModifier:
        #   ContextCreatingMethods:
        #     - concerning
        require 'active_support/concern'
        class Foo
          concerning :Bar do
            def some_public_method
            end
        
            private
        
            def some_private_method
            end
          end
        
          # this is not redundant because `concerning` created its own context
          private
        
          def some_other_private_method
          end
        end

        Example:

        # Lint/UselessAccessModifier:
        #   MethodCreatingMethods:
        #     - delegate
        require 'active_support/core_ext/module/delegation'
        class Foo
          # this is not redundant because `delegate` creates methods
          private
        
          delegate :method_a, to: :method_b
        end

        private (on line 103) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
        Open

            def self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, create_group_if_not_exists, group_is_logical = false)

        This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

        Example:

        # bad
        
        class C
          private
        
          def self.method
            puts 'hi'
          end
        end

        Example:

        # good
        
        class C
          def self.method
            puts 'hi'
          end
        
          private_class_method :method
        end

        Example:

        # good
        
        class C
          class << self
            private
        
            def method
              puts 'hi'
            end
          end
        end

        Line is too long. [124/80]
        Open

                  next_group = group_is_logical ?  final_group.new_group(group_name) : final_group.new_group(group_name, group_name)

        Line is too long. [149/80]
        Open

            def self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, create_group_if_not_exists, group_is_logical = false)

        Line is too long. [116/80]
        Open

              self.retrieve_group_or_create_if_needed(group_path, dir_path, directory_name, project, true, group_is_logical)

        Redundant self detected.
        Open

                elsif self.is_compile_source?(file_name)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Redundant self detected.
        Open

              module_group = self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, true, root_path)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Redundant self detected.
        Open

                  build_file_path = self.configure_file_ref_path(build_file.file_ref)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Redundant self detected.
        Open

                xcode_target = self.obtain_target(target_name, project)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        Unnecessary spacing detected.
        Open

                  next_group = group_is_logical ?  final_group.new_group(group_name) : final_group.new_group(group_name, group_name)

        This cop checks for extra/unnecessary whitespace.

        Example:

        # good if AllowForAlignment is true
        name      = "RuboCop"
        # Some comment and an empty line
        
        website  += "/bbatsov/rubocop" unless cond
        puts        "rubocop"          if     debug
        
        # bad for any configuration
        set_app("RuboCop")
        website  = "https://github.com/bbatsov/rubocop"

        Line is too long. [125/80]
        Open

              module_group = self.retrieve_group_or_create_if_needed(group_path, dir_path, file_group_path, project, true, root_path)

        Line is too long. [116/80]
        Open

              module_group = self.retrieve_group_or_create_if_needed(group_path, nil, nil, project, false, group_is_logical)

        Redundant self detected.
        Open

              module_group = self.retrieve_group_or_create_if_needed(group_path, nil, nil, project, false, group_is_logical)

        This cop checks for redundant uses of self.

        The usage of self is only needed when:

        • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

        • Calling an attribute writer to prevent an local variable assignment.

        Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

        Note we allow uses of self with operators because it would be awkward otherwise.

        Example:

        # bad
        def foo(bar)
          self.baz
        end
        
        # good
        def foo(bar)
          self.bar  # Resolves name clash with the argument.
        end
        
        def foo
          bar = 1
          self.bar  # Resolves name clash with the local variable.
        end
        
        def foo
          %w[x y z].select do |bar|
            self.bar == bar  # Resolves name clash with argument of the block.
          end
        end

        There are no issues that match your filters.

        Category
        Status