mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-13 22:59:19 +10:00
22 lines
296 B
Ruby
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
|