From dccd5ad45a47a9eb28b5bbb7dd895e7b78cfeebb Mon Sep 17 00:00:00 2001 From: Keenan Brock Date: Fri, 27 Sep 2024 11:38:31 -0400 Subject: [PATCH] Require drb ``` warning: drb.rb was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.4.0. You can add drb to your Gemfile or gemspec to silence this warning. ``` --- manageiq-automation_engine.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/manageiq-automation_engine.gemspec b/manageiq-automation_engine.gemspec index 50ad8392..e1a2925e 100644 --- a/manageiq-automation_engine.gemspec +++ b/manageiq-automation_engine.gemspec @@ -19,6 +19,7 @@ Gem::Specification.new do |spec| spec.require_paths = ["lib"] spec.add_dependency "rubyzip", "~>2.0.0" + spec.add_dependency "drb" spec.add_development_dependency "manageiq-style" spec.add_development_dependency "simplecov", ">= 0.21.2"