17 lines
381 B
Ruby
17 lines
381 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module Vagrant
|
|
module Config
|
|
module V1
|
|
# This is a configuration object that can have anything done
|
|
# to it. Anything, and it just appears to keep working.
|
|
class DummyConfig
|
|
def method_missing(name, *args, &block)
|
|
DummyConfig.new
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|