Project

rest

0.05
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Rest client wrapper that chooses best installed client.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0.4.0
>= 0
>= 0.5.4

Runtime

< 3, >= 2.9.1
>= 0
 Project Readme

Rest Wrapper

HTTP/REST client wrapper that provides a standard interface for making http requests using different http clients. If no client is specified it will choose the best http client you have installed based on our performance tests.

Features

  • All clients behave exactly the same:
    • Same error behavior
    • Same 30X redirect behavior
    • Same response object methods
    • Same way to access and manipulate requests and responses such as body, headers, code, etc.
  • Chooses best client you have installed on your system based on what we have found performs the best.
    • Currently net_http_persistent and typhoeus are nearly the same, but since net_http_persistent doesn't have a binary dependency, it wins.
    • You can run performance tests yourself by running: ruby test/test_performance.rb, quite a difference between the libs.
  • Handles 503 errors with exponential backoff.

Getting Started

Install the gem:

gem install rest

Create an Rest client:

@rest = Rest::Client.new()

To choose a specific underlying http client lib:

@rest = Rest::Client.new(:gem=>:typhoeus)

Supported http libraries are:

  • rest_client
  • net_http_persistent
  • typhoeus
  • internal - this gem's built in client.

Then use it:

GET

@rest.get(url, options...)

options:

  • :params => query params for url
  • :headers => headers

POST

@rest.post(url, options...)

options:

  • :body => POST body
  • :headers => headers hash
  • :form_data => hash of fields/values, sent form encoded (only tested with default net-http-persistent)

PUT

@rest.put(url, options...)

options:

  • :body => POST body
  • :headers => headers

DELETE

@rest.delete(url, options...)

Responses

The response object you get back will always be consistent and will have the following functions:

response.code
response.body

Exceptions

If it didn't get a response for whatever reason, you will get a Rest::ClientError

If status code is 40X or 50X, it will raise an exception with the following methods.

err.code
err.response (which has body: err.response.body)