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