From 1aced3be5b83c7c43d423f49035109cfa03939a3 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Fri, 20 Dec 2019 21:45:06 -0800 Subject: Substitute require for require_relative require_relative is significantly faster and should be used when available. Signed-off-by: Tim Smith --- lib/mixlib/authentication/digester.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/mixlib/authentication/digester.rb') diff --git a/lib/mixlib/authentication/digester.rb b/lib/mixlib/authentication/digester.rb index a4d6c5d..c7f424f 100644 --- a/lib/mixlib/authentication/digester.rb +++ b/lib/mixlib/authentication/digester.rb @@ -16,7 +16,7 @@ # limitations under the License. # -require "mixlib/authentication" +require_relative "../authentication" require "openssl" module Mixlib -- cgit v1.2.1