# File lib/rubygems.rb, line 375
  def self.gunzip(data)
    data = StringIO.new data

    Zlib::GzipReader.new(data).read
  end