# File lib/mixlib/config.rb, line 120 def internal_set(method_symbol,value) method_name = method_symbol.id2name if self.respond_to?("#{method_name}=".to_sym) self.send("#{method_name}=", value) else self.configuration[method_symbol] = value end end