debian-mirror-gitlab/lib/gitlab/ci/config/node/unspecified.rb
2016-09-29 09:46:39 +05:30

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