64b1044e7a
This decouples Ci::Config to provide a common interface for handling user configuration files.
40 lines
568 B
Ruby
40 lines
568 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Config
|
|
module Entry
|
|
##
|
|
# This class represents an undefined entry.
|
|
#
|
|
class Undefined < Node
|
|
def initialize(*)
|
|
super(nil)
|
|
end
|
|
|
|
def value
|
|
nil
|
|
end
|
|
|
|
def valid?
|
|
true
|
|
end
|
|
|
|
def errors
|
|
[]
|
|
end
|
|
|
|
def specified?
|
|
false
|
|
end
|
|
|
|
def relevant?
|
|
false
|
|
end
|
|
|
|
def inspect
|
|
"#<#{self.class.name}>"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|