# File lib/countries/sources/cldr/downloader.rb, line 24
      def get(path)
        url = URI("http://www.unicode.org/repos/cldr/trunk/common/#{path}")

        http = Net::HTTP.new(url.host, url.port)

        request = Net::HTTP::Get.new(url)
        response = http.request(request)
        response.read_body
      end