Skip to content

Commit

Permalink
Fix Sinatra warning during specs
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
deivid-rodriguez authored and hsbt committed Dec 16, 2023
1 parent 7cd4282 commit d5af5a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tool/bundler/test_gems.rb
Expand Up @@ -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"
Expand Down

0 comments on commit d5af5a4

Please sign in to comment.