/examples/crack.rb
http://github.com/jnunemaker/httparty · Ruby · 19 lines · 15 code · 4 blank · 0 comment · 0 complexity · 9a535fa8f2470d5f9f07f184820c5137 MD5 · raw file
- require 'rubygems'
- require 'crack'
- dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
- require File.join(dir, 'httparty')
- require 'pp'
- class Rep
- include HTTParty
- parser(
- proc do |body, format|
- Crack::XML.parse(body)
- end
- )
- end
- pp Rep.get('http://whoismyrepresentative.com/getall_mems.php?zip=46544')
- pp Rep.get('http://whoismyrepresentative.com/getall_mems.php', query: { zip: 46544 })