diff options
| author | Lamont Granquist <lamont@scriptkiddie.org> | 2019-05-08 17:03:26 -0700 |
|---|---|---|
| committer | Lamont Granquist <lamont@scriptkiddie.org> | 2019-05-08 17:03:26 -0700 |
| commit | bc7687e56763cedbd010cfd566aa2fc0c53bb194 (patch) | |
| tree | 3d3e3eec51c847f23dc2955f9d058777bdea9a91 /lib/chef/handler | |
| parent | e793c825c857af87e745a8af479af71522ff20db (diff) | |
| download | chef-bc7687e56763cedbd010cfd566aa2fc0c53bb194.tar.gz | |
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 <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/handler')
| -rw-r--r-- | lib/chef/handler/error_report.rb | 4 | ||||
| -rw-r--r-- | lib/chef/handler/json_file.rb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/handler/error_report.rb b/lib/chef/handler/error_report.rb index e84a817e06..ab751c02df 100644 --- a/lib/chef/handler/error_report.rb +++ b/lib/chef/handler/error_report.rb @@ -16,8 +16,8 @@ # limitations under the License. # -require "chef/handler" -require "chef/resource/directory" +require_relative "" +require_relative "../resource/directory" class Chef class Handler diff --git a/lib/chef/handler/json_file.rb b/lib/chef/handler/json_file.rb index 3dc7c51274..bfb36de9a4 100644 --- a/lib/chef/handler/json_file.rb +++ b/lib/chef/handler/json_file.rb @@ -16,8 +16,8 @@ # limitations under the License. # -require "chef/handler" -require "chef/resource/directory" +require_relative "" +require_relative "../resource/directory" class Chef class Handler |
