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

22 lines
415 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
module Gitlab
module Ci
class Config
2017-08-17 22:00:37 +05:30
module Entry
2016-09-29 09:46:39 +05:30
##
2017-08-17 22:00:37 +05:30
# This class represents an unspecified entry.
2016-09-29 09:46:39 +05:30
#
# It decorates original entry adding method that indicates it is
# unspecified.
#
class Unspecified < SimpleDelegator
def specified?
false
end
end
end
end
end
end