summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2023-12-15 17:59:29 +0100
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-12-16 10:09:50 +0800
commitd5af5a48a59dffdd0b156d58167e31109d19c491 (patch)
tree126f993a0320cdf63dd23f4345b15bbf8d6d240b /tool
parent7cd4282cc8b4e8b242f082d806549d87964c4f8c (diff)
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.
Diffstat (limited to 'tool')
-rw-r--r--tool/bundler/test_gems.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/bundler/test_gems.rb b/tool/bundler/test_gems.rb
index 511163b96a..aa1cfd09a5 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"