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

18 lines
239 B
Ruby

module Gitlab
module Ci
class Config
module Node
class Null < Entry
def keys
{}
end
def method_missing(*)
nil
end
end
end
end
end
end