This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
patron /
| name | age | message | |
|---|---|---|---|
| |
.autotest | Mon Jan 19 10:43:54 -0800 2009 | |
| |
.gitignore | Sat Oct 10 08:19:13 -0700 2009 | |
| |
LICENSE | Tue Jun 23 09:36:26 -0700 2009 | |
| |
README.txt | Mon Jul 20 13:21:42 -0700 2009 | |
| |
Rakefile | Sat Oct 10 08:19:13 -0700 2009 | |
| |
VERSION.yml | Sun Oct 04 18:13:42 -0700 2009 | |
| |
ext/ | Fri Nov 13 13:06:49 -0800 2009 | |
| |
lib/ | Wed Nov 25 08:22:02 -0800 2009 | |
| |
patron.gemspec | Sun Oct 04 18:13:46 -0700 2009 | |
| |
script/ | Tue Nov 24 01:05:16 -0800 2009 | |
| |
spec/ | Tue Nov 24 01:05:16 -0800 2009 |
README.txt
= Ruby HTTP Client
== SYNOPSIS
Patron is a Ruby HTTP client library based on libcurl. It does not try to expose
the full "power" (read complexity) of libcurl but instead tries to provide a
sane API while taking advantage of libcurl under the hood.
== USAGE
Usage is very simple. First, you instantiate a Session object. You can set a few
default options on the Session instance that will be used by all subsequent
requests:
sess = Patron::Session.new
sess.timeout = 10
sess.base_url = "http://myserver.com:9900"
sess.headers['User-Agent'] = 'myapp/1.0'
The Session is used to make HTTP requests.
resp = sess.get("/foo/bar")
Requests return a Response object:
if resp.status < 400
puts resp.body
end
The GET, HEAD, PUT, POST and DELETE operations are all supported.
sess.put("/foo/baz", "some data")
sess.delete("/foo/baz")
You can ship custom headers with a single request:
sess.post("/foo/stuff", "some data", {"Content-Type" => "text/plain"})
That is pretty much all there is to it.
== REQUIREMENTS
You need a recent version of libcurl in order to install this gem. On MacOS X
the provided libcurl is sufficient. You will have to install the libcurl
development packages on Debian or Ubuntu. Other Linux systems are probably
similar. Windows users are on your own. Good luck with that.
== INSTALL
sudo gem install patron
Copyright (c) 2008 The Hive







