From fc112254746ae92e3dcc8e6f9055878b1c583cc7 Mon Sep 17 00:00:00 2001 From: Joshua Bremer <59564543+joshuabremerdexcom@users.noreply.github.com> Date: Fri, 18 Feb 2022 10:29:49 -0500 Subject: [PATCH] Add one more require to the quickstart to make this whole thing work immediately --- docs/usage/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/usage/index.md b/docs/usage/index.md index ab82db485..8fc7d293d 100644 --- a/docs/usage/index.md +++ b/docs/usage/index.md @@ -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 ```