gitlab-org--gitlab-foss/lib/gitlab/ci/config/node/unspecified.rb
2016-08-25 11:37:45 +02:00

19 lines
388 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 Unspecified < SimpleDelegator
def specified?
false
end
end
end
end
end
end