Skip to content

Commit

Permalink
add logger to dependencies
Browse files Browse the repository at this point in the history
to avoid "logger was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0."
  • Loading branch information
o-orand committed Oct 9, 2024
1 parent a0f0b0e commit 493fc2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ gem 'sinatra-websocket'
gem 'bunny'
gem 'thin'
gem 'ostruct', '~> 0.6.0' # warning: ostruct was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0
gem 'logger', '~> 1.6', '>= 1.6.1' # warning: logger was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0

group :development, :test do
gem 'rspec'
Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ GEM
listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
logger (1.6.1)
lumberjack (1.2.6)
method_source (1.0.0)
mustermann (3.0.0)
Expand Down Expand Up @@ -96,6 +97,7 @@ PLATFORMS
DEPENDENCIES
bunny
guard-rspec
logger (~> 1.6, >= 1.6.1)
ostruct (~> 0.6.0)
rspec
sinatra
Expand Down

0 comments on commit 493fc2a

Please sign in to comment.