mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 23:56:09 +10:00
21 lines
280 B
Ruby
21 lines
280 B
Ruby
module Gitlab
|
|
module Ci
|
|
class Config
|
|
module Node
|
|
class Null < Entry
|
|
def value
|
|
nil
|
|
end
|
|
|
|
def validate!
|
|
end
|
|
|
|
def method_missing(*)
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|