Skip to content

Instantly share code, notes, and snippets.

@kernelsmith
Created October 15, 2014 20:03
Show Gist options
  • Select an option

  • Save kernelsmith/843e561091abbe8079a0 to your computer and use it in GitHub Desktop.

Select an option

Save kernelsmith/843e561091abbe8079a0 to your computer and use it in GitHub Desktop.
require 'net/http'
# Must be somedomain.net instead of somedomain.net/, otherwise, it will throw exception.
Net::HTTP.start("somedomain.net") do |http|
resp = http.get("/blah.zip")
open("blah.zip", "wb") do |file|
file.write(resp.body)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment