From 45d4d1681e48198b442d3015192c5ff9563a3e06 Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Thu, 6 Jun 2024 08:47:23 +0200 Subject: [PATCH] Add explicit dependency on the `logger` gem This is being bundled, starting in Ruby 3.4 it will warn: https://github.com/ruby/ruby/commit/d7e558e3c48c213d0e8bedca4fb547db55613f7c --- Gemfile.lock | 1 + rbs.gemspec | 1 + 2 files changed, 2 insertions(+) diff --git a/Gemfile.lock b/Gemfile.lock index d9cf41358..25c1253b3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,6 +2,7 @@ PATH remote: . specs: rbs (3.5.0) + logger PATH remote: test/assets/test-gem diff --git a/rbs.gemspec b/rbs.gemspec index dc466a7ff..b0a4b9101 100644 --- a/rbs.gemspec +++ b/rbs.gemspec @@ -41,4 +41,5 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.required_ruby_version = ">= 3.0" + spec.add_dependency "logger" end