mirror of
https://github.com/lostisland/faraday.git
synced 2025-11-22 00:08:56 -05:00
22 lines
499 B
Markdown
22 lines
499 B
Markdown
# EM-HTTP Adapter
|
|
|
|
This Adapter uses the [em-http-request][rdoc] gem to make HTTP requests.
|
|
|
|
```ruby
|
|
conn = Faraday.new(...) do |f|
|
|
# no custom options available
|
|
f.adapter :em_http
|
|
end
|
|
```
|
|
|
|
## Links
|
|
|
|
* [Gem RDoc][rdoc]
|
|
* [Gem source][src]
|
|
* [Adapter RDoc][adapter_rdoc]
|
|
* [EM-HTTP Adapter](./em-http.md)
|
|
|
|
[rdoc]: https://www.rubydoc.info/gems/em-http-request
|
|
[src]: https://github.com/igrigorik/em-http-request#readme
|
|
[adapter_rdoc]: https://www.rubydoc.info/gems/faraday/Faraday/Adapter/EMHttp
|