Skip to content

Instantly share code, notes, and snippets.

@Breefield
Created March 28, 2013 17:31
Show Gist options
  • Save Breefield/5265197 to your computer and use it in GitHub Desktop.
Save Breefield/5265197 to your computer and use it in GitHub Desktop.
require 'net/http'
Net::HTTP.start("example.com") do |http|
resp = http.get("/path/file.blah")
open("file.blah", "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