Sha256: 3d6ab2e37e588ee075204782f25ceae27cb568d6f72eda4164547327b9802b1c
Contents?: true
Size: 899 Bytes
Versions: 1
Compression:
Stored size: 899 Bytes
Contents
require 'net/http' require 'hpricot' module Jkl class << self def post_to(uri, post_args) begin resp, data = Net::HTTP.post_form(uri, post_args) data rescue URI::InvalidURIError => e puts("WARN: Invalid URI: #{e}") rescue SocketError => e puts("WARN: Could not connect: #{e}") rescue Errno::ECONNREFUSED => e puts("WARN: Connection refused: #{e}") end end def get_from(uri) begin res = Net::HTTP.get_response(URI.parse(uri)) res.body rescue URI::InvalidURIError => e puts("WARN: Invalid URI: #{e}") rescue SocketError => e puts("WARN: Could not connect: #{e}") rescue Errno::ECONNREFUSED => e puts("WARN: Connection refused: #{e}") end end def get_from_as_xml(uri) Hpricot.XML get_from uri end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jakal-0.1.0 | lib/jkl/rest_client.rb |