From ed392f2ccbde7c2ae61fc84e9e9f543354125a3b Mon Sep 17 00:00:00 2001 From: Mathieu Jobin <99191+mathieujobin@users.noreply.github.com> Date: Fri, 29 Dec 2023 20:09:28 +0900 Subject: [PATCH] Add drb gem as dependency drb has been bundled as a gem, and will be removed from the stdlib from ruby 3.4.0 This patch will fix following warning with Ruby 3.3.0 > warning: drb was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.4.0. Add drb to your Gemfile or gemspec. Also contact author of pry-remote-0.1.8 to add drb into its gemspec. --- pry-remote.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/pry-remote.gemspec b/pry-remote.gemspec index 2373c3c..2565cf9 100644 --- a/pry-remote.gemspec +++ b/pry-remote.gemspec @@ -19,6 +19,7 @@ Gem::Specification.new do |s| s.require_paths = ["lib"] + s.add_dependency "drb" s.add_dependency "slop", "~> 3.0" s.add_dependency "pry", "~> 0.9"