2008-11-08 11:01:44 -05:00
|
|
|
dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
|
|
require File.join(dir, 'httparty')
|
|
|
|
require 'pp'
|
|
|
|
|
|
|
|
class Google
|
|
|
|
include HTTParty
|
2008-11-11 19:29:23 -05:00
|
|
|
format :html
|
2008-11-08 11:01:44 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# google.com redirects to www.google.com so this is live test for redirection
|
2008-11-08 11:30:26 -05:00
|
|
|
pp Google.get('http://google.com')
|
|
|
|
|
2015-04-17 20:04:14 -04:00
|
|
|
puts '', '*' * 70, ''
|
2008-11-08 11:30:26 -05:00
|
|
|
|
|
|
|
# check that ssl is requesting right
|
2015-04-17 19:18:50 -04:00
|
|
|
pp Google.get('https://www.google.com')
|