From 2e45536c478ee4984022a3ca674bca14f94605e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Jurado=20Gonz=C3=A1lez?= Date: Wed, 25 Mar 2020 08:41:18 +0100 Subject: [PATCH] Fixed SSL doc example. Key `pem_password` is missing. --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 3203d8af..a610b9dc 100644 --- a/docs/README.md +++ b/docs/README.md @@ -79,7 +79,7 @@ class Client base_uri "https://example.com" def self.fetch - get("/resources", pem: (File.read("#{File.expand_path('.')}/path/to/certs/cert.pem"), "123456") + get("/resources", pem: File.read("#{File.expand_path('.')}/path/to/certs/cert.pem"), pem_password: "123456") end end ```