Sha256: 294313c95b6cee8224700f1dd33ee476ab24107b6e28cf9f2c5d1636abda92c1

Contents?: true

Size: 404 Bytes

Versions: 4

Compression:

Stored size: 404 Bytes

Contents

require 'simplabs/excellent/checks/base'

module Simplabs

  module Excellent

    module Checks

      class CyclomaticComplexityCheck < Base #:nodoc:

        def initialize(interesting_contexts, options = {}) #:nodoc:
          super(options)
          @interesting_contexts = interesting_contexts
          @threshold            = options[:threshold].to_i
        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/cyclomatic_complexity_check.rb
excellent-2.1.0 lib/simplabs/excellent/checks/cyclomatic_complexity_check.rb
excellent-2.0.1 lib/simplabs/excellent/checks/cyclomatic_complexity_check.rb
excellent-2.0.0 lib/simplabs/excellent/checks/cyclomatic_complexity_check.rb