module Bundler::URI

def self.get_encoding(label)

http://encoding.spec.whatwg.org/#concept-encoding-get
return encoding or nil
:nodoc:
def self.get_encoding(label)
  Encoding.find(WEB_ENCODINGS_[label.to_str.strip.downcase]) rescue nil
end