debian-mirror-gitlab/lib/gitlab/ci/config/node/unspecified.rb

20 lines
388 B
Ruby
Raw Normal View History

2016-09-29 09:46:39 +05:30
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