Condense build status and dependency status

This commit is contained in:
Erik Michaels-Ober 2011-12-16 23:19:02 -08:00
parent 86767d2dbd
commit b166a80c27

View File

@ -1,6 +1,9 @@
# faraday
# faraday [![Build Status](https://secure.travis-ci.org/technoweenie/faraday.png?branch=master)][travis] [![Dependency Status](https://gemnasium.com/technoweenie/faraday.png?travis)][gemnasium]
Modular HTTP client library that uses middleware. Heavily inspired by Rack.
[travis]: http://travis-ci.org/technoweenie/faraday
[gemnasium]: https://gemnasium.com/technoweenie/faraday
## <a name="usage"></a>Usage
conn = Faraday.new(:url => 'http://sushi.com') do |builder|
builder.use Faraday::Request::UrlEncoded # convert request params as "www-form-urlencoded"
@ -143,16 +146,6 @@ The `env` is a hash with symbol keys that contains info about the request and, l
* Support timeouts
* Add curb, em-http, fast_http
## <a name="build"></a>Build Status
[![Build Status](https://secure.travis-ci.org/technoweenie/faraday.png?branch=master)][travis]
[travis]: http://travis-ci.org/technoweenie/faraday
## <a name="dependencies"></a>Dependency Status
[![Dependency Status](https://gemnasium.com/technoweenie/faraday.png?travis)][gemnasium]
[gemnasium]: https://gemnasium.com/technoweenie/faraday
## <a name="pulls"></a>Note on Patches/Pull Requests
1. Fork the project.
2. Make your feature addition or bug fix.