debian-mirror-gitlab/lib/gitlab/ci/config/node/undefined.rb
2016-09-13 17:45:13 +05:30

19 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