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

20 lines
384 B
Ruby
Raw Normal View History

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