debian-mirror-gitlab/lib/gitlab/ci/config/entry/unspecified.rb
2017-08-17 22:00:37 +05:30

19 lines
384 B
Ruby

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