44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
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
|
|
LOG = Log4r::Logger.new("vagrant::config::v2::dummy_config")
|
|
|
|
def method_missing(name, *args, &block)
|
|
# Trying to define a variable
|
|
if name.to_s.match(/^[\w]*=/)
|
|
LOG.debug("found name #{name}")
|
|
LOG.debug("setting instance variable name #{name.to_s.split("=")[0]}")
|
|
var_name = "@#{name.to_s.split("=")[0]}"
|
|
self.instance_variable_set(var_name, args[0])
|
|
else
|
|
DummyConfig.new
|
|
end
|
|
end
|
|
|
|
def merge(c)
|
|
c
|
|
end
|
|
|
|
def set_options(options)
|
|
options.each do |key, value|
|
|
if key.to_s.match(/^[\w]*=/)
|
|
var_name = "@#{key.to_s}"
|
|
self.instance_variable_set(var_name, value)
|
|
end
|
|
end
|
|
end
|
|
|
|
def instance_variables_hash
|
|
instance_variables.inject({}) do |acc, iv|
|
|
acc[iv.to_s[1..-1]] = instance_variable_get(iv)
|
|
acc
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|