Files
gitlabhq/lib/gitlab/ci/config/node/null.rb
T

22 lines
296 B
Ruby

module Gitlab
module Ci
class Config
module Node
class Null < Entry
def value
nil
end
def validate!
nil
end
def method_missing(*)
nil
end
end
end
end
end
end