From 71f08325c51d53b066ac181e4756570a66eacd7d Mon Sep 17 00:00:00 2001 From: Mathieu Jobin <99191+mathieujobin@users.noreply.github.com> Date: Fri, 29 Dec 2023 20:07:02 +0900 Subject: [PATCH] Add abbrev gem as dependency abbrev has been bundled as a gem, and will be removed from the stdlib from ruby 3.4.0 under 3.3.0, this will remove this warning > warning: abbrev was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.4.0. Add abbrev to your Gemfile or gemspec. Also contact author of highline-2.1.0 to add abbrev into its gemspec. --- highline.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/highline.gemspec b/highline.gemspec index b463d69..0d01860 100644 --- a/highline.gemspec +++ b/highline.gemspec @@ -29,6 +29,7 @@ DESCRIPTION spec.required_ruby_version = ">= 3.0" + spec.add_runtime_dependency "abbrev" spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "minitest"