From d5af5a48a59dffdd0b156d58167e31109d19c491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 15 Dec 2023 17:59:29 +0100 Subject: [PATCH] Fix Sinatra warning during specs Some specs now print the following warning: ``` /path/to/bundler/tmp/1/gems/base/ruby/3.2.0/gems/sinatra-2.0.8.1/lib/sinatra/base.rb:902: warning: constant Tilt::Cache is deprecated ``` Updating sinatra to latest & greatest fixes it. Update other deps too since at it. --- tool/bundler/test_gems.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool/bundler/test_gems.rb b/tool/bundler/test_gems.rb index 511163b96aa194..aa1cfd09a50936 100644 --- a/tool/bundler/test_gems.rb +++ b/tool/bundler/test_gems.rb @@ -2,11 +2,11 @@ source "https://rubygems.org" -gem "rack", "2.0.8" +gem "rack", "~> 2.0" gem "webrick", "1.7.0" gem "rack-test", "~> 1.1" gem "compact_index", "~> 0.15.0" -gem "sinatra", "~> 2.0" +gem "sinatra", "~> 3.0" gem "rake", "~> 13.1" gem "builder", "~> 3.2" gem "rb_sys"