mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-04 00:02:03 -04:00
48 lines
1.1 KiB
Markdown
48 lines
1.1 KiB
Markdown
---
|
|
# You don't need to edit this file, it's empty on purpose.
|
|
# Edit theme's home layout instead if you wanna make some changes
|
|
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
|
|
layout: page
|
|
title: Homepage
|
|
feature-title: <img src="assets/img/home-logo.svg">
|
|
feature-img: "assets/img/featured-bg.svg"
|
|
hide: true
|
|
---
|
|
|
|
Faraday is an HTTP client library that provides a common interface over many adapters (such as Net::HTTP)
|
|
and embraces the concept of Rack middleware when processing the request/response cycle.
|
|
|
|
{: .text-center}
|
|
[<i class="fab fa-fw fa-github"> </i> Fork on GitHub][github]{: .btn}
|
|
[<i class="fab fa-fw fa-gitter"> </i> Chat with us][gitter]{: .btn}
|
|
|
|
{: .mt-60}
|
|
## Installation
|
|
|
|
Add this line to your application's Gemfile:
|
|
|
|
```ruby
|
|
gem 'faraday'
|
|
```
|
|
|
|
And then execute:
|
|
|
|
```bash
|
|
$ bundle
|
|
```
|
|
|
|
Or install it yourself as:
|
|
|
|
```bash
|
|
$ gem install faraday
|
|
```
|
|
|
|
{: .mt-60}
|
|
|
|
{: .text-center}
|
|
[<i class="fas fa-fw fa-book-open"> </i> Read the docs][usage]{: .btn}
|
|
|
|
[github]: https://github.com/lostisland/faraday
|
|
[gitter]: https://gitter.im/lostisland/faraday
|
|
[usage]: ./usage
|