Skip to content

Instantly share code, notes, and snippets.

@horie1024
Last active October 14, 2015 01:54
Show Gist options
  • Save horie1024/91310c66646e6136f900 to your computer and use it in GitHub Desktop.
Save horie1024/91310c66646e6136f900 to your computer and use it in GitHub Desktop.
url = URI.parse(pre_signed_url)
apk = File.open("YOUR_APK_PATH", "rb").read
Net::HTTP.start(url.host) do |http|
http.send_request("PUT", url.request_uri, apk, {"content-type" => "application/octet-stream"})
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment