diff options
author | Tim Smith <tsmith@chef.io> | 2019-05-21 21:11:21 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2019-05-21 21:12:52 -0700 |
commit | 98074edf56878aa50b2d6862f248f9e1f11f866f (patch) | |
tree | d7baf9b9231c13d902083e148037c1b1030a5ecc /lib/ohai/config.rb | |
parent | 62a879800c77cd6c1808e7a247976d7c910f6209 (diff) | |
download | ohai-98074edf56878aa50b2d6862f248f9e1f11f866f.tar.gz |
Use require relative throughout the codebaserelative
Speed up the runs a tiny bit.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/ohai/config.rb')
-rw-r--r-- | lib/ohai/config.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ohai/config.rb b/lib/ohai/config.rb index 6029a26f..66790d98 100644 --- a/lib/ohai/config.rb +++ b/lib/ohai/config.rb @@ -18,8 +18,8 @@ # require "chef-config/config" -require "ohai/exception" -require "ohai/plugin_config" +require_relative "exception" +require_relative "plugin_config" module Ohai Config = ChefConfig::Config |