Skip to content

Instantly share code, notes, and snippets.

@carturoch
Created February 23, 2019 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carturoch/24092b2e50754766ea105a684e74d91f to your computer and use it in GitHub Desktop.
Save carturoch/24092b2e50754766ea105a684e74d91f to your computer and use it in GitHub Desktop.
require 'open-uri'
1.upto(12) do |i|
remote_path = "https://via.placeholder.com/650x300/069/AAA?text=#{i}"
open("check_front_#{i}.png", 'wb') do |f|
f << open(remote_path).read
puts "downloaded #{i}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment