Sha256: f2bd09851c88edebd101c460246acf8185b8870087cf391e256578bcc59cd349

Contents?: true

Size: 836 Bytes

Versions: 97

Compression:

Stored size: 836 Bytes

Contents

module CC
  class Config
    class ChecksAdapter
      attr_reader :config

      def initialize(data = {})
        @config = data

        return unless checks.present?
        copy_qm_checks_config
      end

      private

      def copy_qm_checks_config
        DefaultAdapter::ENGINES.keys.each do |name|
          copy_checks(name)
        end
      end

      def copy_checks(engine_name)
        engine = config.fetch("plugins", {}).fetch(engine_name, {})
        engine["config"] ||= {}

        if engine["config"].is_a?(String)
          engine["config"] = {
            "file" => engine["config"],
            "checks" => checks,
          }
        elsif engine["config"].is_a?(Hash)
          engine["config"]["checks"] = checks
        end
      end

      def checks
        config["checks"]
      end
    end
  end
end

Version data entries

97 entries across 97 versions & 2 rubygems

Version Path
codeclimate-fede-0.85.38 lib/cc/config/checks_adapter.rb
codeclimate-fede-0.85.37 lib/cc/config/checks_adapter.rb
codeclimate-fede-0.85.36 lib/cc/config/checks_adapter.rb
codeclimate-fede-0.85.35 lib/cc/config/checks_adapter.rb
codeclimate-fede-0.85.33 lib/cc/config/checks_adapter.rb
codeclimate-fede-0.85.32 lib/cc/config/checks_adapter.rb
codeclimate-fede-0.85.31 lib/cc/config/checks_adapter.rb
codeclimate-fede-0.85.30 lib/cc/config/checks_adapter.rb
codeclimate-fede-0.85.21 lib/cc/config/checks_adapter.rb
codeclimate-fede-0.85.24 lib/cc/config/checks_adapter.rb
codeclimate-fede-0.85.23 lib/cc/config/checks_adapter.rb
codeclimate-0.85.23 lib/cc/config/checks_adapter.rb
codeclimate-0.85.22 lib/cc/config/checks_adapter.rb
codeclimate-0.85.21 lib/cc/config/checks_adapter.rb
codeclimate-0.85.19 lib/cc/config/checks_adapter.rb
codeclimate-0.85.18 lib/cc/config/checks_adapter.rb
codeclimate-0.85.17 lib/cc/config/checks_adapter.rb
codeclimate-0.85.15 lib/cc/config/checks_adapter.rb
codeclimate-0.85.14 lib/cc/config/checks_adapter.rb
codeclimate-0.85.13 lib/cc/config/checks_adapter.rb