1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/examples/google.rb

17 lines
386 B
Ruby
Raw Normal View History

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
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')