module Dl def self.download(url) session = Patron::Session.new response = session.get url filename = response.url.split('/').pop File.new(filename, 'w').write(response.body) end end