vaguerent/lib/vagrant/config/v1/dummy_config.rb
2013-02-28 00:16:43 -08:00

14 lines
312 B
Ruby

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