# File lib/more/facets/rbconfig.rb, line 12
  def self.method_missing(s,*a,&b)
    s = s.to_s
    if CONFIG.key?(s)
      CONFIG[s]
    elsif CONFIG.key?(s.upcase)
      CONFIG[s.upcase]
    else
      super(s,*a,&b)
    end
  end