appbot/kms_rails

View on GitHub
lib/kms_rails/active_record.rb

Summary

Maintainability
B
5 hrs
Test Coverage
A
100%

Assignment Branch Condition size for kms_attr is too high. [47.25/15]
Open

      def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
        include InstanceMethods

        real_field = "#{field}_enc"
        enc        = Core.new(key_id: key_id, msgpack: msgpack, context_key: context_key, context_value: context_value)
Severity: Minor
Found in lib/kms_rails/active_record.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. [37/10]
Open

      def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
        include InstanceMethods

        real_field = "#{field}_enc"
        enc        = Core.new(key_id: key_id, msgpack: msgpack, context_key: context_key, context_value: context_value)
Severity: Minor
Found in lib/kms_rails/active_record.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 kms_attr has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
Open

      def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
        include InstanceMethods

        real_field = "#{field}_enc"
        enc        = Core.new(key_id: key_id, msgpack: msgpack, context_key: context_key, context_value: context_value)
Severity: Minor
Found in lib/kms_rails/active_record.rb - About 4 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

Cyclomatic complexity for kms_attr is too high. [13/6]
Open

      def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
        include InstanceMethods

        real_field = "#{field}_enc"
        enc        = Core.new(key_id: key_id, msgpack: msgpack, context_key: context_key, context_value: context_value)
Severity: Minor
Found in lib/kms_rails/active_record.rb by rubocop

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 kms_attr is too high. [14/7]
Open

      def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
        include InstanceMethods

        real_field = "#{field}_enc"
        enc        = Core.new(key_id: key_id, msgpack: msgpack, context_key: context_key, context_value: context_value)
Severity: Minor
Found in lib/kms_rails/active_record.rb by rubocop

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

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

        define_method "#{field}=" do |data|
          raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
          raise RuntimeError, "Field '#{real_field}' must exist to store encrypted data" unless self.class.column_names.include?(real_field)

          if data.blank? # Just set to nil if nil
Severity: Minor
Found in lib/kms_rails/active_record.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. [11/10]
Open

        define_method "#{field}" do
          raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
          raise RuntimeError, "Field '#{real_field}' must exist to retrieve decrypted data" unless self.class.column_names.include?(real_field)

          hash = get_hash(field)
Severity: Minor
Found in lib/kms_rails/active_record.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 kms_attr has 37 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
        include InstanceMethods

        real_field = "#{field}_enc"
        enc        = Core.new(key_id: key_id, msgpack: msgpack, context_key: context_key, context_value: context_value)
Severity: Minor
Found in lib/kms_rails/active_record.rb - About 1 hr to fix

    KmsRails::ActiveRecord::ClassMethods#kms_attr has boolean parameter 'msgpack'
    Open

          def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Boolean Parameter is a special case of Control Couple, where a method parameter is defaulted to true or false. A Boolean Parameter effectively permits a method's caller to decide which execution path to take. This is a case of bad cohesion. You're creating a dependency between methods that is not really necessary, thus increasing coupling.

    Example

    Given

    class Dummy
      def hit_the_switch(switch = true)
        if switch
          puts 'Hitting the switch'
          # do other things...
        else
          puts 'Not hitting the switch'
          # do other things...
        end
      end
    end

    Reek would emit the following warning:

    test.rb -- 3 warnings:
      [1]:Dummy#hit_the_switch has boolean parameter 'switch' (BooleanParameter)
      [2]:Dummy#hit_the_switch is controlled by argument switch (ControlParameter)

    Note that both smells are reported, Boolean Parameter and Control Parameter.

    Getting rid of the smell

    This is highly dependent on your exact architecture, but looking at the example above what you could do is:

    • Move everything in the if branch into a separate method
    • Move everything in the else branch into a separate method
    • Get rid of the hit_the_switch method alltogether
    • Make the decision what method to call in the initial caller of hit_the_switch

    KmsRails::ActiveRecord::ClassMethods#kms_attr has 6 parameters
    Open

          def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    A Long Parameter List occurs when a method has a lot of parameters.

    Example

    Given

    class Dummy
      def long_list(foo,bar,baz,fling,flung)
        puts foo,bar,baz,fling,flung
      end
    end

    Reek would report the following warning:

    test.rb -- 1 warning:
      [2]:Dummy#long_list has 5 parameters (LongParameterList)

    A common solution to this problem would be the introduction of parameter objects.

    KmsRails::ActiveRecord::ClassMethods#kms_attr is controlled by argument 'retain'
    Open

              set_retained(field, data) if retain
              encrypted_data = enc.encrypt(data)
              data = nil
              
              store_hash(field, encrypted_data)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Control Parameter is a special case of Control Couple

    Example

    A simple example would be the "quoted" parameter in the following method:

    def write(quoted)
      if quoted
        write_quoted @value
      else
        write_unquoted @value
      end
    end

    Fixing those problems is out of the scope of this document but an easy solution could be to remove the "write" method alltogether and to move the calls to "writequoted" / "writeunquoted" in the initial caller of "write".

    KmsRails::ActiveRecord::ClassMethods#kms_attr has boolean parameter 'retain'
    Open

          def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Boolean Parameter is a special case of Control Couple, where a method parameter is defaulted to true or false. A Boolean Parameter effectively permits a method's caller to decide which execution path to take. This is a case of bad cohesion. You're creating a dependency between methods that is not really necessary, thus increasing coupling.

    Example

    Given

    class Dummy
      def hit_the_switch(switch = true)
        if switch
          puts 'Hitting the switch'
          # do other things...
        else
          puts 'Not hitting the switch'
          # do other things...
        end
      end
    end

    Reek would emit the following warning:

    test.rb -- 3 warnings:
      [1]:Dummy#hit_the_switch has boolean parameter 'switch' (BooleanParameter)
      [2]:Dummy#hit_the_switch is controlled by argument switch (ControlParameter)

    Note that both smells are reported, Boolean Parameter and Control Parameter.

    Getting rid of the smell

    This is highly dependent on your exact architecture, but looking at the example above what you could do is:

    • Move everything in the if branch into a separate method
    • Move everything in the else branch into a separate method
    • Get rid of the hit_the_switch method alltogether
    • Make the decision what method to call in the initial caller of hit_the_switch

    KmsRails::ActiveRecord::ClassMethods#kms_attr has approx 28 statements
    Open

          def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    A method with Too Many Statements is any method that has a large number of lines.

    Too Many Statements warns about any method that has more than 5 statements. Reek's smell detector for Too Many Statements counts +1 for every simple statement in a method and +1 for every statement within a control structure (if, else, case, when, for, while, until, begin, rescue) but it doesn't count the control structure itself.

    So the following method would score +6 in Reek's statement-counting algorithm:

    def parse(arg, argv, &error)
      if !(val = arg) and (argv.empty? or /\A-/ =~ (val = argv[0]))
        return nil, block, nil                                         # +1
      end
      opt = (val = parse_arg(val, &error))[1]                          # +2
      val = conv_arg(*val)                                             # +3
      if opt and !arg
        argv.shift                                                     # +4
      else
        val[0] = nil                                                   # +5
      end
      val                                                              # +6
    end

    (You might argue that the two assigments within the first @if@ should count as statements, and that perhaps the nested assignment should count as +2.)

    KmsRails::ActiveRecord::ClassMethods#kms_attr calls 'self.class.column_names' 6 times
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
              raise RuntimeError, "Field '#{real_field}' must exist to store encrypted data" unless self.class.column_names.include?(real_field)
    
              if data.blank? # Just set to nil if nil
                clear_retained(field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    KmsRails::ActiveRecord has no descriptive comment
    Open

      module ActiveRecord
    Severity: Minor
    Found in lib/kms_rails/active_record.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

    KmsRails::ActiveRecord::InstanceMethods#clear_retained calls '@_retained[field]' 3 times
    Open

            return if !@_retained.include?(field) || @_retained[field].nil?
            Core.shred_string(@_retained[field]) if @_retained[field].class == String
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    KmsRails::ActiveRecord::ClassMethods#kms_attr calls 'raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column"' 3 times
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
              raise RuntimeError, "Field '#{real_field}' must exist to store encrypted data" unless self.class.column_names.include?(real_field)
    
              if data.blank? # Just set to nil if nil
                clear_retained(field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    KmsRails::ActiveRecord::ClassMethods has no descriptive comment
    Open

        module ClassMethods
    Severity: Minor
    Found in lib/kms_rails/active_record.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

    KmsRails::ActiveRecord::ClassMethods#kms_attr calls 'self.class.column_names.include?(field.to_s)' 3 times
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
              raise RuntimeError, "Field '#{real_field}' must exist to store encrypted data" unless self.class.column_names.include?(real_field)
    
              if data.blank? # Just set to nil if nil
                clear_retained(field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    KmsRails::ActiveRecord::ClassMethods#kms_attr calls 'clear_retained(field)' 2 times
    Open

                clear_retained(field)
                self[real_field] = nil
                return 
              end
    
    
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    KmsRails::ActiveRecord::ClassMethods#kms_attr calls 'field.to_s' 3 times
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
              raise RuntimeError, "Field '#{real_field}' must exist to store encrypted data" unless self.class.column_names.include?(real_field)
    
              if data.blank? # Just set to nil if nil
                clear_retained(field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    KmsRails::ActiveRecord::InstanceMethods#set_retained calls '@_retained[field]' 3 times
    Open

            if @_retained[field]
              Core.shred_string(@_retained[field]) if @_retained[field].class == String
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    KmsRails::ActiveRecord::ClassMethods#kms_attr calls 'self.class.column_names.include?(real_field)' 3 times
    Open

              raise RuntimeError, "Field '#{real_field}' must exist to store encrypted data" unless self.class.column_names.include?(real_field)
    
              if data.blank? # Just set to nil if nil
                clear_retained(field)
                self[real_field] = nil
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    KmsRails::ActiveRecord::ClassMethods#kms_attr calls 'self.class' 6 times
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
              raise RuntimeError, "Field '#{real_field}' must exist to store encrypted data" unless self.class.column_names.include?(real_field)
    
              if data.blank? # Just set to nil if nil
                clear_retained(field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    KmsRails::ActiveRecord::ClassMethods#kms_attr calls 'get_hash(field)' 2 times
    Open

              Core.to64( get_hash(field) )
            end
    
            define_method "#{field}" do
              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    KmsRails::ActiveRecord::InstanceMethods has no descriptive comment
    Open

        module InstanceMethods
    Severity: Minor
    Found in lib/kms_rails/active_record.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

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

          def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    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.

    KmsRails::ActiveRecord::InstanceMethods#clear_retained performs a nil-check
    Open

            return if !@_retained.include?(field) || @_retained[field].nil?
    Severity: Minor
    Found in lib/kms_rails/active_record.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)

    Trailing whitespace detected.
    Open

        
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Trailing whitespace detected.
    Open

                return 
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Line is too long. [143/80]
    Open

              raise RuntimeError, "Field '#{real_field}' must exist to retrieve decrypted data" unless self.class.column_names.include?(real_field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Move plaintext out of the conditional.
    Open

                plaintext
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for identical lines at the beginning or end of each branch of a conditional statement.

    Example:

    # bad
    if condition
      do_x
      do_z
    else
      do_y
      do_z
    end
    
    # good
    if condition
      do_x
    else
      do_y
    end
    do_z
    
    # bad
    if condition
      do_z
      do_x
    else
      do_z
      do_y
    end
    
    # good
    do_z
    if condition
      do_x
    else
      do_y
    end
    
    # bad
    case foo
    when 1
      do_x
    when 2
      do_x
    else
      do_x
    end
    
    # good
    case foo
    when 1
      do_x
      do_y
    when 2
      # nothing
    else
      do_x
      do_z
    end

    Prefer to_s over string interpolation.
    Open

            define_method "#{field}" do
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for strings that are just an interpolated expression.

    Example:

    # bad
    "#{@var}"
    
    # good
    @var.to_s
    
    # good if @var is already a String
    @var

    Redundant RuntimeError argument can be removed.
    Open

              raise RuntimeError, "Field '#{real_field}' must exist to retrieve encrypted data" unless self.class.column_names.include?(real_field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for RuntimeError as the argument of raise/fail.

    It checks for code like this:

    Example:

    # Bad
    raise RuntimeError, 'message'
    
    # Bad
    raise RuntimeError.new('message')
    
    # Good
    raise 'message'

    Missing top-level module documentation comment.
    Open

        module ClassMethods
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

    The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

    Example:

    # bad
    class Person
      # ...
    end
    
    # good
    # Description/Explanation of Person class
    class Person
      # ...
    end

    Missing top-level module documentation comment.
    Open

      module ActiveRecord
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

    The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

    Example:

    # bad
    class Person
      # ...
    end
    
    # good
    # Description/Explanation of Person class
    class Person
      # ...
    end

    Missing top-level module documentation comment.
    Open

        module InstanceMethods
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

    The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

    Example:

    # bad
    class Person
      # ...
    end
    
    # good
    # Description/Explanation of Person class
    class Person
      # ...
    end

    Move plaintext out of the conditional.
    Open

                plaintext
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for identical lines at the beginning or end of each branch of a conditional statement.

    Example:

    # bad
    if condition
      do_x
      do_z
    else
      do_y
      do_z
    end
    
    # good
    if condition
      do_x
    else
      do_y
    end
    do_z
    
    # bad
    if condition
      do_z
      do_x
    else
      do_z
      do_y
    end
    
    # good
    do_z
    if condition
      do_x
    else
      do_y
    end
    
    # bad
    case foo
    when 1
      do_x
    when 2
      do_x
    else
      do_x
    end
    
    # good
    case foo
    when 1
      do_x
      do_y
    when 2
      # nothing
    else
      do_x
      do_z
    end

    Prefer to_s over string interpolation.
    Open

            define_method "#{real_field}" do
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for strings that are just an interpolated expression.

    Example:

    # bad
    "#{@var}"
    
    # good
    @var.to_s
    
    # good if @var is already a String
    @var

    Line is too long. [83/80]
    Open

              Core.shred_string(@_retained[field]) if @_retained[field].class == String
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Extra empty line detected at method body end.
    Open

    
          end
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

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

    Example:

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

    Use def with parentheses when there are parameters.
    Open

          def included base
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cops checks for parentheses around the arguments in method definitions. Both instance and class/singleton methods are checked.

    Example: EnforcedStyle: require_parentheses (default)

    # The `require_parentheses` style requires method definitions
    # to always use parentheses
    
    # bad
    def bar num1, num2
      num1 + num2
    end
    
    def foo descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name
      do_something
    end
    
    # good
    def bar(num1, num2)
      num1 + num2
    end
    
    def foo(descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name)
      do_something
    end

    Example: EnforcedStyle: requirenoparentheses

    # The `require_no_parentheses` style requires method definitions
    # to never use parentheses
    
    # bad
    def bar(num1, num2)
      num1 + num2
    end
    
    def foo(descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name)
      do_something
    end
    
    # good
    def bar num1, num2
      num1 + num2
    end
    
    def foo descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name
      do_something
    end

    Example: EnforcedStyle: requirenoparenthesesexceptmultiline

    # The `require_no_parentheses_except_multiline` style prefers no
    # parantheses when method definition arguments fit on single line,
    # but prefers parantheses when arguments span multiple lines.
    
    # bad
    def bar(num1, num2)
      num1 + num2
    end
    
    def foo descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name
      do_something
    end
    
    # good
    def bar num1, num2
      num1 + num2
    end
    
    def foo(descriptive_var_name,
            another_descriptive_var_name,
            last_descriptive_var_name)
      do_something
    end

    Redundant RuntimeError argument can be removed.
    Open

              raise RuntimeError, "Field '#{real_field}' must exist to store encrypted data" unless self.class.column_names.include?(real_field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for RuntimeError as the argument of raise/fail.

    It checks for code like this:

    Example:

    # Bad
    raise RuntimeError, 'message'
    
    # Bad
    raise RuntimeError.new('message')
    
    # Good
    raise 'message'

    Line is too long. [140/80]
    Open

              raise RuntimeError, "Field '#{real_field}' must exist to store encrypted data" unless self.class.column_names.include?(real_field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Line is too long. [81/80]
    Open

            Core.shred_string(@_retained[field]) if @_retained[field].class == String
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Redundant RuntimeError argument can be removed.
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for RuntimeError as the argument of raise/fail.

    It checks for code like this:

    Example:

    # Bad
    raise RuntimeError, 'message'
    
    # Bad
    raise RuntimeError.new('message')
    
    # Good
    raise 'message'

    Redundant RuntimeError argument can be removed.
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for RuntimeError as the argument of raise/fail.

    It checks for code like this:

    Example:

    # Bad
    raise RuntimeError, 'message'
    
    # Bad
    raise RuntimeError.new('message')
    
    # Good
    raise 'message'

    Line is too long. [158/80]
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Space inside parentheses detected.
    Open

              Core.to64( get_hash(field) )
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Checks for spaces inside ordinary round parentheses.

    Example:

    # bad
    f( 3)
    g = (a + 3 )
    
    # good
    f(3)
    g = (a + 3)

    Redundant RuntimeError argument can be removed.
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for RuntimeError as the argument of raise/fail.

    It checks for code like this:

    Example:

    # Bad
    raise RuntimeError, 'message'
    
    # Bad
    raise RuntimeError.new('message')
    
    # Good
    raise 'message'

    Line is too long. [158/80]
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Space inside parentheses detected.
    Open

              Core.to64( get_hash(field) )
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Checks for spaces inside ordinary round parentheses.

    Example:

    # bad
    f( 3)
    g = (a + 3 )
    
    # good
    f(3)
    g = (a + 3)

    Line is too long. [158/80]
    Open

              raise RuntimeError, "Field '#{field}' must not be a real column, '#{real_field}' is the real column" if self.class.column_names.include?(field.to_s)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Line is too long. [103/80]
    Open

          def kms_attr(field, key_id:, retain: false, msgpack: false, context_key: nil, context_value: nil)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Redundant RuntimeError argument can be removed.
    Open

              raise RuntimeError, "Field '#{real_field}' must exist to retrieve decrypted data" unless self.class.column_names.include?(real_field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for RuntimeError as the argument of raise/fail.

    It checks for code like this:

    Example:

    # Bad
    raise RuntimeError, 'message'
    
    # Bad
    raise RuntimeError.new('message')
    
    # Good
    raise 'message'

    Trailing whitespace detected.
    Open

              
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Line is too long. [143/80]
    Open

              raise RuntimeError, "Field '#{real_field}' must exist to retrieve encrypted data" unless self.class.column_names.include?(real_field)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    Useless assignment to variable - data.
    Open

              data = nil
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    This cop checks for every useless assignment to local variable in every scope. The basic idea for this cop was from the warning of ruby -cw:

    assigned but unused variable - foo

    Currently this cop has advanced logic that detects unreferenced reassignments and properly handles varied cases such as branch, loop, rescue, ensure, etc.

    Example:

    # bad
    
    def some_method
      some_var = 1
      do_something
    end

    Example:

    # good
    
    def some_method
      some_var = 1
      do_something(some_var)
    end

    Line is too long. [119/80]
    Open

            enc        = Core.new(key_id: key_id, msgpack: msgpack, context_key: context_key, context_value: context_value)
    Severity: Minor
    Found in lib/kms_rails/active_record.rb by rubocop

    There are no issues that match your filters.

    Category
    Status