Hi,

2009/4/15 Raveendran Perumalsamy <jazzezravi / gmail.com>:
> Hi All,
>
>
> I want to save this image in my local machine with ruby code
>
> https://mail.google.com/mail/help/images/logo.gif
>
> Note: I did with Watir gem. But I want to do it another simple way.
>

    require 'net/https'
    require 'uri'

    url = 'https://mail.google.com/mail/help/images/logo.gif'
    uri = URI.parse(url)
    http = Net::HTTP.new(uri.host, uri.port)
    http.use_ssl = true if uri.scheme == "https"
    http.verify_mode = OpenSSL::SSL::VERIFY_NONE
    http.start {
      http.request_get(uri.path) {|res|
        File.open(File.basename(uri.path),'wb') { |f|
	    f.write(res.body)
	}
      }
    }

	
Regards,

Park Heesob