80 81 82 83 84
# File 'lib/quick_file.rb', line 80 def download(url, to) out = open(to, "wb") out.write(open(url).read) out.close end