summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/actors_endpoint.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2019-12-20 15:16:38 -0800
committerTim Smith <tsmith84@gmail.com>2019-12-29 18:07:08 -0800
commitdad360173bb575c17daa531021e80064f6fefded (patch)
tree4970b784cd91554edebc82e38d8418e26aa4ff6d /lib/chef_zero/endpoints/actors_endpoint.rb
parent7c856ba33f5bda1eb636843e3968214cc140141a (diff)
downloadchef-zero-dad360173bb575c17daa531021e80064f6fefded.tar.gz
Substitute require for require_relative
require_relative is significantly faster and should be used when available. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef_zero/endpoints/actors_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/actors_endpoint.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef_zero/endpoints/actors_endpoint.rb b/lib/chef_zero/endpoints/actors_endpoint.rb
index f4a2160..79a72a8 100644
--- a/lib/chef_zero/endpoints/actors_endpoint.rb
+++ b/lib/chef_zero/endpoints/actors_endpoint.rb
@@ -1,5 +1,5 @@
require "ffi_yajl"
-require "chef_zero/endpoints/rest_list_endpoint"
+require_relative "rest_list_endpoint"
module ChefZero
module Endpoints