/examples/whoismyrep.rb

http://github.com/jnunemaker/httparty · Ruby · 10 lines · 8 code · 2 blank · 0 comment · 0 complexity · b3178ac590d9e7be2b75507d3c7f18ef MD5 · raw file

  1. dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
  2. require File.join(dir, 'httparty')
  3. require 'pp'
  4. class Rep
  5. include HTTParty
  6. end
  7. pp Rep.get('http://whoismyrepresentative.com/getall_mems.php?zip=46544')
  8. pp Rep.get('http://whoismyrepresentative.com/getall_mems.php', query: { zip: 46544 })