codeclimate/codeclimate

View on GitHub
lib/cc/cli/engines/engine_command.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
require "cc/analyzer"

module CC
  module CLI
    module Engines
      class EngineCommand < Command
        abstract!

        def engine_registry
          @engine_registry ||= EngineRegistry.new
        end
      end
    end
  end
end