main
1require 'net/http'
2
3class HttpGateway
4 def get(uri, params = {})
5 uri = URI(uri)
6 uri.query = URI.encode_www_form(params) if params.keys.any?
7 Net::HTTP.get_response(uri)
8 end
9end