Add one more require to the quickstart to make this whole thing work immediately

This commit is contained in:
Joshua Bremer 2022-02-18 10:29:49 -05:00 committed by Olle Jonsson
parent f003443acc
commit fc11225474

View File

@ -20,6 +20,7 @@ You might want to use Faraday with the `Net::HTTP` adapter, for example.
Remember you'll need to install the corresponding adapter gem before you'll be able to use it.
```ruby
require 'faraday'
require 'faraday/net_http'
Faraday.default_adapter = :net_http
```