vaguerent/lib/vagrant/config/v1/dummy_config.rb

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