gitlab-ce/lib/gitlab/ci/config/node/undefined.rb

20 lines
386 B
Ruby

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