Top Level Namespace
Defined Under Namespace
Modules: ORTools
Instance Method Summary collapse
Instance Method Details
#download_file(url, download_path) ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'ext/or-tools/vendor.rb', line 44 def download_file(url, download_path) uri = URI(url) location = nil Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http| request = Net::HTTP::Get.new(uri) http.request(request) do |response| case response when Net::HTTPRedirection location = response["location"] when Net::HTTPSuccess i = 0 File.open(download_path, "wb") do |f| response.read_body do |chunk| f.write(chunk) # print progress putc "." if i % 50 == 0 i += 1 end end puts # newline else raise "Bad response" end end end # outside of Net::HTTP block to close previous connection download_file(location, download_path) if location end |