vaguerent/lib/vagrant/config/v2/dummy_config.rb
2013-02-28 00:17:58 -08:00

14 lines
312 B
Ruby

module Vagrant
module Config
module V2
# 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