From bc7687e56763cedbd010cfd566aa2fc0c53bb194 Mon Sep 17 00:00:00 2001 From: Lamont Granquist Date: Wed, 8 May 2019 17:03:26 -0700 Subject: Convert require to require_relative This gives a speed boost since rubygems does not have to scan through every gem in the gemset in order to find the file. Signed-off-by: Lamont Granquist --- lib/chef/provider/subversion.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/chef/provider/subversion.rb') diff --git a/lib/chef/provider/subversion.rb b/lib/chef/provider/subversion.rb index adea6a6428..67aec8d510 100644 --- a/lib/chef/provider/subversion.rb +++ b/lib/chef/provider/subversion.rb @@ -18,8 +18,8 @@ # TODO subversion and git should both extend from a base SCM provider. -require "chef/log" -require "chef/provider" +require_relative "../log" +require_relative "" require "chef-config/mixin/fuzzy_hostname_matcher" require "fileutils" -- cgit v1.2.1