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 (
commit e72f70bda6519cb7f7c0abc556a614c05d7c98f9
tree e3543203105e6e25422c7e12c90966baab9e1b0c
parent 8bbca5b5c2e8c547abfb55a476ab7f79301962d9
tree e3543203105e6e25422c7e12c90966baab9e1b0c
parent 8bbca5b5c2e8c547abfb55a476ab7f79301962d9
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/ | ||
| |
lib/ | ||
| |
patron.gemspec | Sun Oct 04 18:13:46 -0700 2009 | |
| |
script/ | Thu Aug 13 03:41:38 -0700 2009 | |
| |
spec/ | Sun Oct 04 17:25:11 -0700 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








