summaryrefslogtreecommitdiff
path: root/lib/chef/encrypted_data_bag_item
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-08-12 14:34:47 -0700
committerTim Smith <tsmith84@gmail.com>2020-08-12 14:34:47 -0700
commit0a2f993c69dc4d5644067bf8ae6f6bb078bf522b (patch)
tree831047783d2ed214bbf11921db94364f4c9adcd3 /lib/chef/encrypted_data_bag_item
parent53dcbe99d02e4514ff19ca55add795686b2dfc13 (diff)
downloadchef-require_optimization.tar.gz
Optimize requires for non-omnibus installsrequire_optimization
Only require external libraries if we need to. Also use require_relative everywhere we can. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/encrypted_data_bag_item')
-rw-r--r--lib/chef/encrypted_data_bag_item/decryptor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/encrypted_data_bag_item/decryptor.rb b/lib/chef/encrypted_data_bag_item/decryptor.rb
index 19c3a82bb7..e73d94f580 100644
--- a/lib/chef/encrypted_data_bag_item/decryptor.rb
+++ b/lib/chef/encrypted_data_bag_item/decryptor.rb
@@ -16,7 +16,7 @@
# limitations under the License.
#
-require "yaml"
+require "yaml" unless defined?(YAML)
require_relative "../json_compat"
require "openssl" unless defined?(OpenSSL)
require "base64"