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
|