debian-mirror-gitlab/lib/gitlab/config/entry/undefined.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
612 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# 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
2022-01-26 12:08:38 +05:30
def type
nil
end
2019-02-15 15:39:39 +05:30
def inspect
"#<#{self.class.name}>"
end
end
end
end
end