mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
18 lines
239 B
Ruby
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
|