画像をhttp経由でダウンロードする

rubyでhttp経由で画像をダウンロードするメモ

def download_image(dest, image_url)
  File.open(dest, 'wb') do |file|
    file.write(open(image_url).read)
  end
end