Mixin for a set of configs.
Reset this local config to be empty.
# File lib/rvm/environment/configuration.rb, line 30 def clear_config! @config = {} end
Returns the current config for this scope
# File lib/rvm/environment/configuration.rb, line 20 def config @config ||= {} end
Merge a set of items into the config.
# File lib/rvm/environment/configuration.rb, line 25 def merge_config!(r) r.each_pair { |k, v| config[k.to_s] = v } end