public
Description: Makes http fun! Also, makes consuming restful web services dead easy.
Homepage:
Clone URL: git://github.com/jnunemaker/httparty.git
Click here to lend your support to: httparty and make a donation at www.pledgie.com !
httparty / examples / google.rb
100644 16 lines (12 sloc) 0.383 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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')