I want to download this picture using Ruby. How do I do that?
http://farm1.static.flickr.com/92/218926700_ecedc5fef7_o.jpg
I am using Mac OS.
require "open-uri" open("your-url") {|f| File.open("whatever_file.jpg","wb") do |file| file.puts f.read end }
2.1m questions
2.1m answers
60 comments
57.0k users