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