mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
16 lines
No EOL
383 B
Ruby
16 lines
No EOL
383 B
Ruby
dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
require File.join(dir, 'httparty')
|
|
require 'pp'
|
|
|
|
class Google
|
|
include HTTParty
|
|
format :html
|
|
end
|
|
|
|
# google.com redirects to www.google.com so this is live test for redirection
|
|
pp Google.get('http://google.com')
|
|
|
|
puts '', '*'*70, ''
|
|
|
|
# check that ssl is requesting right
|
|
pp Google.get('https://www.google.com') |