Welcome to mirror list, hosted at ThFree Co, Russian Federation.

extendable.rb « config « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a43901c69fe659c8cfc4e081dab8ef2bd7117fa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

module Gitlab
  module Ci
    class Config
      class Extendable
        include Enumerable

        ExtensionError = Class.new(StandardError)

        def initialize(hash)
          @hash = hash.to_h.deep_dup

          each { |entry| entry.extend! if entry.extensible? }
        end

        def each
          @hash.each_key do |key|
            yield Extendable::Entry.new(key, @hash)
          end
        end

        def to_hash
          @hash.to_h
        end
      end
    end
  end
end