summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/node/undefined.rb
blob: 699605e1e3aef2ceffc324b5ba92463ca1a15135 (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
30
module Gitlab
  module Ci
    class Config
      module Node
        ##
        # This class represents an undefined entry node.
        #
        # It takes original entry class as configuration and returns default
        # value of original entry as self value.
        #
        #
        class Undefined < Entry
          include Validatable

          validations do
            validates :config, type: Class
          end

          def value
            @config.default
          end

          def defined?
            false
          end
        end
      end
    end
  end
end