summaryrefslogtreecommitdiff
path: root/lib/chef/mixin
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-01-22 11:27:04 -0800
committerTim Smith <tsmith@chef.io>2018-01-22 11:31:33 -0800
commitd310076da6fe246a413b82601c8a55cd0ebcef0b (patch)
treea574af93ef5037cb61b915b2ddc06efd9ae9a6c2 /lib/chef/mixin
parent9439fd6e5da8d87f48ebc1b6de4b7c09c8654c39 (diff)
downloadchef-d310076da6fe246a413b82601c8a55cd0ebcef0b.tar.gz
Rename the OpenSSL mixin to avoid name conflicts
This way people don't have to refactor their code from OpenSSL::Whatever to ::OpenSSL::Whatever Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/mixin')
-rw-r--r--lib/chef/mixin/openssl_helper.rb (renamed from lib/chef/mixin/openssl.rb)2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/mixin/openssl.rb b/lib/chef/mixin/openssl_helper.rb
index e868da9ac4..fb2638f0e9 100644
--- a/lib/chef/mixin/openssl.rb
+++ b/lib/chef/mixin/openssl_helper.rb
@@ -17,7 +17,7 @@
class Chef
module Mixin
- module OpenSSL
+ module OpenSSLHelper
def self.included(_base)
require "openssl" unless defined?(::OpenSSL)
end