Sha256: d9b55e2b6f51e07e91a1d6407e190bc3e120a3bd6efecfe20db6aada008ab735

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

require 'simplabs/excellent/checks/line_count_check'

module Simplabs

  module Excellent

    module Checks

      # This check reports classes which have more lines than the threshold. Classes with a large number of lines are hard to read and understand and
      # often an indicator for badly designed code as well.
      #
      # ==== Applies to
      #
      # * classes
      class ClassLineCountCheck < LineCountCheck

        DEFAULT_THRESHOLD = 300

        def initialize(options = {}) #:nodoc:
          options[:threshold] ||= DEFAULT_THRESHOLD
          super([Parsing::ClassContext], options)
        end

        def evaluate(context)
          line_count = context.line_count == 1 ? 1 : context.line_count + 1
          add_warning(*warning_args(context, line_count)) unless line_count <= @threshold
        end

        protected

          def warning_args(context, line_count) #:nodoc:
            [context, '{{class}} has {{count}} lines.', { :class => context.full_name, :count => line_count }]
          end

      end

    end

  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
excellent-2.1.1 lib/simplabs/excellent/checks/class_line_count_check.rb
excellent-2.1.0 lib/simplabs/excellent/checks/class_line_count_check.rb
excellent-2.0.1 lib/simplabs/excellent/checks/class_line_count_check.rb
excellent-2.0.0 lib/simplabs/excellent/checks/class_line_count_check.rb