gerencianet/gn-api-sdk-ruby

View on GitHub
lib/gerencianet/endpoints.rb

Summary

Maintainability
B
4 hrs
Test Coverage

Assignment Branch Condition size for authenticate is too high. [34.66/15]
Open

    def authenticate
      if (@options.has_key?(:pix_cert))
        url = get_url({}, @endpoints[:PIX][:authorize][:route])
      else
        url = get_url({}, @endpoints[:DEFAULT][:authorize][:route])
Severity: Minor
Found in lib/gerencianet/endpoints.rb by rubocop

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

Assignment Branch Condition size for make_request is too high. [28.44/15]
Open

    def make_request(params, body, settings)
      url = get_url(params, settings[:route])
      headers = {
        "accept" => "application/json",
        "api-sdk" => "ruby-#{Gerencianet::VERSION}"
Severity: Minor
Found in lib/gerencianet/endpoints.rb by rubocop

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 has too many lines. [32/20]
Open

    def authenticate
      if (@options.has_key?(:pix_cert))
        url = get_url({}, @endpoints[:PIX][:authorize][:route])
      else
        url = get_url({}, @endpoints[:DEFAULT][:authorize][:route])
Severity: Minor
Found in lib/gerencianet/endpoints.rb by rubocop

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. [29/20]
Open

    def make_request(params, body, settings)
      url = get_url(params, settings[:route])
      headers = {
        "accept" => "application/json",
        "api-sdk" => "ruby-#{Gerencianet::VERSION}"
Severity: Minor
Found in lib/gerencianet/endpoints.rb by rubocop

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.

Assignment Branch Condition size for create_methods is too high. [15.03/15]
Open

    def create_methods
      if (@options.has_key?(:pix_cert))
        @endpoints[:PIX].each do |key, settings|
          self.class.send(:define_method, key) do |args = {}|
            create(args[:params], args[:body], settings)  
Severity: Minor
Found in lib/gerencianet/endpoints.rb by rubocop

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 authenticate has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def authenticate
      if (@options.has_key?(:pix_cert))
        url = get_url({}, @endpoints[:PIX][:authorize][:route])
      else
        url = get_url({}, @endpoints[:DEFAULT][:authorize][:route])
Severity: Minor
Found in lib/gerencianet/endpoints.rb - About 1 hr to fix

    Method make_request has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def make_request(params, body, settings)
          url = get_url(params, settings[:route])
          headers = {
            "accept" => "application/json",
            "api-sdk" => "ruby-#{Gerencianet::VERSION}"
    Severity: Minor
    Found in lib/gerencianet/endpoints.rb - About 1 hr to fix

      Method current_base_url has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def current_base_url
            if (@options.has_key?(:pix_cert))
              @options[:sandbox] ? @urls[:PIX][:sandbox] : @urls[:PIX][:production]
            else
              @options[:sandbox] ? @urls[:DEFAULT][:sandbox] : @urls[:DEFAULT][:production]
      Severity: Minor
      Found in lib/gerencianet/endpoints.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

      Method authenticate has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def authenticate
            if (@options.has_key?(:pix_cert))
              url = get_url({}, @endpoints[:PIX][:authorize][:route])
            else
              url = get_url({}, @endpoints[:DEFAULT][:authorize][:route])
      Severity: Minor
      Found in lib/gerencianet/endpoints.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

      Identical blocks of code found in 2 locations. Consider refactoring.
      Open

                .post(url, json: auth_body, ssl_context: OpenSSL::SSL::SSLContext.new.tap do |ctx|
                  ctx.set_params(
                    cert: OpenSSL::X509::Certificate.new(File.read(@options[:pix_cert])),
                    key:  OpenSSL::PKey::RSA.new(File.read(@options[:pix_cert]))
                  )
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb and 1 other location - About 25 mins to fix
      lib/gerencianet/endpoints.rb on lines 81..85

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 30.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Identical blocks of code found in 2 locations. Consider refactoring.
      Open

              .call(url, json: body, ssl_context: OpenSSL::SSL::SSLContext.new.tap do |ctx|
                ctx.set_params(
                  cert: OpenSSL::X509::Certificate.new(File.read(@options[:pix_cert])),
                  key:  OpenSSL::PKey::RSA.new(File.read(@options[:pix_cert]))
                )
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb and 1 other location - About 25 mins to fix
      lib/gerencianet/endpoints.rb on lines 115..119

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 30.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Trailing whitespace detected.
      Open

                  create(args[:params], args[:body], settings)  
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Trailing whitespace detected.
      Open

                  create(args[:params], args[:body], settings) 
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Use 2 (not 0) spaces for indenting an expression spanning multiple lines.
      Open

              .method(settings[:method])
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks the indentation of the method name part in method calls that span more than one line.

      Example: EnforcedStyle: aligned

      # bad
      while myvariable
      .b
        # do something
      end
      
      # good
      while myvariable
            .b
        # do something
      end
      
      # good
      Thing.a
           .b
           .c

      Example: EnforcedStyle: indented

      # good
      while myvariable
        .b
      
        # do something
      end

      Example: EnforcedStyle: indentedrelativeto_receiver

      # good
      while myvariable
              .a
              .b
      
        # do something
      end
      
      # good
      myvariable = Thing
                     .a
                     .b
                     .c

      Don't use parentheses around a method call.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for redundant parentheses.

      Example:

      # bad
      (x) if ((y.z).nil?)
      
      # good
      x if y.z.nil?

      Trailing whitespace detected.
      Open

        
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Prefer double-quoted strings unless you need single quotes to avoid extra backslashes for escaping.
      Open

              headers['partner-token'] = @options[:partner_token]
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Checks if uses of quotes match the configured preference.

      Example: EnforcedStyle: single_quotes (default)

      # bad
      "No special symbols"
      "No string interpolation"
      "Just text"
      
      # good
      'No special symbols'
      'No string interpolation'
      'Just text'
      "Wait! What's #{this}!"

      Example: EnforcedStyle: double_quotes

      # bad
      'Just some text'
      'No special chars or interpolation'
      
      # good
      "Just some text"
      "No special chars or interpolation"
      "Every string in #{project} uses double_quotes"

      Trailing whitespace detected.
      Open

              response = 
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Line is too long. [85/80]
      Open

              .call(url, json: body, ssl_context: OpenSSL::SSL::SSLContext.new.tap do |ctx|
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Use Hash#key? instead of Hash#has_key?.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop (by default) checks for uses of methods Hash#haskey? and Hash#hasvalue? where it enforces Hash#key? and Hash#value? It is configurable to enforce the inverse, using verbose method names also.

      Example: EnforcedStyle: short (default)

      # bad Hash#haskey? Hash#hasvalue?

      # good Hash#key? Hash#value?

      Example: EnforcedStyle: verbose

      # bad Hash#key? Hash#value?

      # good Hash#haskey? Hash#hasvalue?

      Use Hash#key? instead of Hash#has_key?.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop (by default) checks for uses of methods Hash#haskey? and Hash#hasvalue? where it enforces Hash#key? and Hash#value? It is configurable to enforce the inverse, using verbose method names also.

      Example: EnforcedStyle: short (default)

      # bad Hash#haskey? Hash#hasvalue?

      # good Hash#key? Hash#value?

      Example: EnforcedStyle: verbose

      # bad Hash#key? Hash#value?

      # good Hash#haskey? Hash#hasvalue?

      Trailing whitespace detected.
      Open

            end     
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Trailing whitespace detected.
      Open

              response = 
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Trailing whitespace detected.
      Open

           
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Use 2 (not 0) spaces for indenting an expression spanning multiple lines.
      Open

              .call(url, json: body, ssl_context: OpenSSL::SSL::SSLContext.new.tap do |ctx|
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks the indentation of the method name part in method calls that span more than one line.

      Example: EnforcedStyle: aligned

      # bad
      while myvariable
      .b
        # do something
      end
      
      # good
      while myvariable
            .b
        # do something
      end
      
      # good
      Thing.a
           .b
           .c

      Example: EnforcedStyle: indented

      # good
      while myvariable
        .b
      
        # do something
      end

      Example: EnforcedStyle: indentedrelativeto_receiver

      # good
      while myvariable
              .a
              .b
      
        # do something
      end
      
      # good
      myvariable = Thing
                     .a
                     .b
                     .c

      Trailing whitespace detected.
      Open

                HTTP 
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Use the return of the conditional for variable assignment and comparison.
      Open

            if (@options.has_key?(:pix_cert))
              url = get_url({}, @endpoints[:PIX][:authorize][:route])
            else
              url = get_url({}, @endpoints[:DEFAULT][:authorize][:route])
            end
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Line is too long. [85/80]
      Open

              @options[:sandbox] ? @urls[:DEFAULT][:sandbox] : @urls[:DEFAULT][:production]
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Don't use parentheses around a method call.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for redundant parentheses.

      Example:

      # bad
      (x) if ((y.z).nil?)
      
      # good
      x if y.z.nil?

      Don't use parentheses around the condition of an if.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for the presence of superfluous parentheses around the condition of if/unless/while/until.

      Example:

      # bad
      x += 1 while (x < 10)
      foo unless (bar || baz)
      
      if (x > 10)
      elsif (x < 3)
      end
      
      # good
      x += 1 while x < 10
      foo unless bar || baz
      
      if x > 10
      elsif x < 3
      end

      Don't use parentheses around the condition of an if.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for the presence of superfluous parentheses around the condition of if/unless/while/until.

      Example:

      # bad
      x += 1 while (x < 10)
      foo unless (bar || baz)
      
      if (x > 10)
      elsif (x < 3)
      end
      
      # good
      x += 1 while x < 10
      foo unless bar || baz
      
      if x > 10
      elsif x < 3
      end

      Don't use parentheses around a method call.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for redundant parentheses.

      Example:

      # bad
      (x) if ((y.z).nil?)
      
      # good
      x if y.z.nil?

      Always use raise to signal exceptions.
      Open

              fail "unable to authenticate"
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for uses of fail and raise.

      Example: EnforcedStyle: only_raise (default)

      # The `only_raise` style enforces the sole use of `raise`.
      # bad
      begin
        fail
      rescue Exception
        # handle it
      end
      
      def watch_out
        fail
      rescue Exception
        # handle it
      end
      
      Kernel.fail
      
      # good
      begin
        raise
      rescue Exception
        # handle it
      end
      
      def watch_out
        raise
      rescue Exception
        # handle it
      end
      
      Kernel.raise

      Example: EnforcedStyle: only_fail

      # The `only_fail` style enforces the sole use of `fail`.
      # bad
      begin
        raise
      rescue Exception
        # handle it
      end
      
      def watch_out
        raise
      rescue Exception
        # handle it
      end
      
      Kernel.raise
      
      # good
      begin
        fail
      rescue Exception
        # handle it
      end
      
      def watch_out
        fail
      rescue Exception
        # handle it
      end
      
      Kernel.fail

      Example: EnforcedStyle: semantic

      # The `semantic` style enforces the use of `fail` to signal an
      # exception, then will use `raise` to trigger an offense after
      # it has been rescued.
      # bad
      begin
        raise
      rescue Exception
        # handle it
      end
      
      def watch_out
        # Error thrown
      rescue Exception
        fail
      end
      
      Kernel.fail
      Kernel.raise
      
      # good
      begin
        fail
      rescue Exception
        # handle it
      end
      
      def watch_out
        fail
      rescue Exception
        raise 'Preferably with descriptive message'
      end
      
      explicit_receiver.fail
      explicit_receiver.raise

      Extra empty line detected at method body end.
      Open

      
          end
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cops checks if empty lines exist around the bodies of methods.

      Example:

      # good
      
      def foo
        # ...
      end
      
      # bad
      
      def bar
      
        # ...
      
      end

      Line is too long. [83/80]
      Open

                    cert: OpenSSL::X509::Certificate.new(File.read(@options[:pix_cert])),
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Use a guard clause instead of wrapping the code inside a conditional expression.
      Open

            if response.status.to_s == STATUS::UNAUTHORIZED
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Use a guard clause instead of wrapping the code inside a conditional expression

      Example:

      # bad
      def test
        if something
          work
        end
      end
      
      # good
      def test
        return unless something
        work
      end
      
      # also good
      def test
        work if something
      end
      
      # bad
      if something
        raise 'exception'
      else
        ok
      end
      
      # good
      raise 'exception' if something
      ok

      Use Hash#key? instead of Hash#has_key?.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop (by default) checks for uses of methods Hash#haskey? and Hash#hasvalue? where it enforces Hash#key? and Hash#value? It is configurable to enforce the inverse, using verbose method names also.

      Example: EnforcedStyle: short (default)

      # bad Hash#haskey? Hash#hasvalue?

      # good Hash#key? Hash#value?

      Example: EnforcedStyle: verbose

      # bad Hash#key? Hash#value?

      # good Hash#haskey? Hash#hasvalue?

      Trailing whitespace detected.
      Open

              "api-sdk" => "ruby-#{Gerencianet::VERSION}"  
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Trailing whitespace detected.
      Open

            
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Trailing whitespace detected.
      Open

            
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Trailing whitespace detected.
      Open

            
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Trailing whitespace detected.
      Open

                HTTP     
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Use Hash#key? instead of Hash#has_key?.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop (by default) checks for uses of methods Hash#haskey? and Hash#hasvalue? where it enforces Hash#key? and Hash#value? It is configurable to enforce the inverse, using verbose method names also.

      Example: EnforcedStyle: short (default)

      # bad Hash#haskey? Hash#hasvalue?

      # good Hash#key? Hash#value?

      Example: EnforcedStyle: verbose

      # bad Hash#key? Hash#value?

      # good Hash#haskey? Hash#hasvalue?

      Use 2 (not 0) spaces for indenting an expression spanning multiple lines.
      Open

              .auth("Bearer #{@token['access_token']}")
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks the indentation of the method name part in method calls that span more than one line.

      Example: EnforcedStyle: aligned

      # bad
      while myvariable
      .b
        # do something
      end
      
      # good
      while myvariable
            .b
        # do something
      end
      
      # good
      Thing.a
           .b
           .c

      Example: EnforcedStyle: indented

      # good
      while myvariable
        .b
      
        # do something
      end

      Example: EnforcedStyle: indentedrelativeto_receiver

      # good
      while myvariable
              .a
              .b
      
        # do something
      end
      
      # good
      myvariable = Thing
                     .a
                     .b
                     .c

      Line is too long. [92/80]
      Open

                .post(url, json: auth_body, ssl_context: OpenSSL::SSL::SSLContext.new.tap do |ctx|
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Don't use parentheses around the condition of an if.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for the presence of superfluous parentheses around the condition of if/unless/while/until.

      Example:

      # bad
      x += 1 while (x < 10)
      foo unless (bar || baz)
      
      if (x > 10)
      elsif (x < 3)
      end
      
      # good
      x += 1 while x < 10
      foo unless bar || baz
      
      if x > 10
      elsif x < 3
      end

      Don't use parentheses around the condition of an if.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for the presence of superfluous parentheses around the condition of if/unless/while/until.

      Example:

      # bad
      x += 1 while (x < 10)
      foo unless (bar || baz)
      
      if (x > 10)
      elsif (x < 3)
      end
      
      # good
      x += 1 while x < 10
      foo unless bar || baz
      
      if x > 10
      elsif x < 3
      end

      Line is too long. [81/80]
      Open

                  cert: OpenSSL::X509::Certificate.new(File.read(@options[:pix_cert])),
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Don't use parentheses around a method call.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for redundant parentheses.

      Example:

      # bad
      (x) if ((y.z).nil?)
      
      # good
      x if y.z.nil?

      Trailing whitespace detected.
      Open

                end)        
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Trailing whitespace detected.
      Open

        
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Use Hash#key? instead of Hash#has_key?.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop (by default) checks for uses of methods Hash#haskey? and Hash#hasvalue? where it enforces Hash#key? and Hash#value? It is configurable to enforce the inverse, using verbose method names also.

      Example: EnforcedStyle: short (default)

      # bad Hash#haskey? Hash#hasvalue?

      # good Hash#key? Hash#value?

      Example: EnforcedStyle: verbose

      # bad Hash#key? Hash#value?

      # good Hash#haskey? Hash#hasvalue?

      Use 2 (not 0) spaces for indenting an expression spanning multiple lines.
      Open

              .headers(headers)
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks the indentation of the method name part in method calls that span more than one line.

      Example: EnforcedStyle: aligned

      # bad
      while myvariable
      .b
        # do something
      end
      
      # good
      while myvariable
            .b
        # do something
      end
      
      # good
      Thing.a
           .b
           .c

      Example: EnforcedStyle: indented

      # good
      while myvariable
        .b
      
        # do something
      end

      Example: EnforcedStyle: indentedrelativeto_receiver

      # good
      while myvariable
              .a
              .b
      
        # do something
      end
      
      # good
      myvariable = Thing
                     .a
                     .b
                     .c

      Don't use parentheses around a method call.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for redundant parentheses.

      Example:

      # bad
      (x) if ((y.z).nil?)
      
      # good
      x if y.z.nil?

      Extra empty line detected at method body end.
      Open

      
          end
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cops checks if empty lines exist around the bodies of methods.

      Example:

      # good
      
      def foo
        # ...
      end
      
      # bad
      
      def bar
      
        # ...
      
      end

      Trailing whitespace detected.
      Open

             
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      Don't use parentheses around the condition of an if.
      Open

            if (@options.has_key?(:pix_cert))
      Severity: Minor
      Found in lib/gerencianet/endpoints.rb by rubocop

      This cop checks for the presence of superfluous parentheses around the condition of if/unless/while/until.

      Example:

      # bad
      x += 1 while (x < 10)
      foo unless (bar || baz)
      
      if (x > 10)
      elsif (x < 3)
      end
      
      # good
      x += 1 while x < 10
      foo unless bar || baz
      
      if x > 10
      elsif x < 3
      end

      There are no issues that match your filters.

      Category
      Status