diff options
author | Tim Smith <tsmith84@gmail.com> | 2019-12-20 21:45:06 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2019-12-20 21:45:06 -0800 |
commit | 1aced3be5b83c7c43d423f49035109cfa03939a3 (patch) | |
tree | 5228faba5c9691ab477a9c86970ccd9a47bf4145 /lib/mixlib/authentication/signedheaderauth.rb | |
parent | c151eedf3139b8e1e3199b5ab08d2f4ff200f3b0 (diff) | |
download | mixlib-authentication-relative.tar.gz |
Substitute require for require_relativerelative
require_relative is significantly faster and should be used when available.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/mixlib/authentication/signedheaderauth.rb')
-rw-r--r-- | lib/mixlib/authentication/signedheaderauth.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mixlib/authentication/signedheaderauth.rb b/lib/mixlib/authentication/signedheaderauth.rb index 0ca74c4..be34381 100644 --- a/lib/mixlib/authentication/signedheaderauth.rb +++ b/lib/mixlib/authentication/signedheaderauth.rb @@ -20,8 +20,8 @@ require "time" require "base64" require "openssl/digest" -require "mixlib/authentication" -require "mixlib/authentication/digester" +require_relative "../authentication" +require_relative "digester" module Mixlib module Authentication |