Skip to content

Instantly share code, notes, and snippets.

@mrpunkin
Created August 31, 2012 17:54
Show Gist options
  • Save mrpunkin/3556509 to your computer and use it in GitHub Desktop.
Save mrpunkin/3556509 to your computer and use it in GitHub Desktop.
Tempfile.open(filename) do |t|
begin
t.binmode
t.write Net::HTTP.start(host){|http| http.get(url)}.body
FileUtils.cp(t.path, filepath)
ensure
t.close!
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment