summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2022-03-29 10:01:06 -0700
committerJohn McCrae <john.mccrae@progress.com>2022-03-29 10:04:03 -0700
commit5e82b4b62c40cde2f4eb2774efe08fb211d4520d (patch)
tree11663adab10a6a13cecc1af25dcb9d642c08ae36
parent85596608db5680a283179cda2f2bff4044594078 (diff)
downloadchef-5e82b4b62c40cde2f4eb2774efe08fb211d4520d.tar.gz
removed errant requires statement for Singleton class
Signed-off-by: John McCrae <john.mccrae@progress.com>
-rw-r--r--Gemfile.lock4
-rw-r--r--lib/chef/client.rb1
2 files changed, 2 insertions, 3 deletions
diff --git a/Gemfile.lock b/Gemfile.lock
index 4d31ec7768..35a26ab383 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -322,7 +322,7 @@ GEM
net-ssh (6.1.0)
netrc (0.11.0)
nori (2.6.0)
- parallel (1.22.0)
+ parallel (1.22.1)
parser (3.1.1.0)
ast (~> 2.4.1)
parslet (1.8.2)
@@ -527,4 +527,4 @@ DEPENDENCIES
webmock
BUNDLED WITH
- 2.3.5
+ 2.3.7
diff --git a/lib/chef/client.rb b/lib/chef/client.rb
index d2f5693e75..07798798b9 100644
--- a/lib/chef/client.rb
+++ b/lib/chef/client.rb
@@ -56,7 +56,6 @@ require "chef-utils" unless defined?(ChefUtils::CANARY)
require "ohai" unless defined?(Ohai::System)
require "rbconfig" unless defined?(RbConfig)
require "forwardable" unless defined?(Forwardable)
-require "singleton" unless defined?(Singleton)
require_relative "compliance/runner"