summaryrefslogtreecommitdiff
path: root/lib/gitlab/config/entry/unspecified.rb
blob: c096180d0f82d7016b141a839d92dc73fb89b183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Gitlab
  module Config
    module Entry
      ##
      # This class represents an unspecified entry.
      #
      # It decorates original entry adding method that indicates it is
      # unspecified.
      #
      class Unspecified < SimpleDelegator
        def specified?
          false
        end
      end
    end
  end
end