Skip to content

Commit c7cb42a

Browse files
committed
Gemfile: avoid warnings on Ruby 3.4 of ostruct, logger
1 parent 107a4c2 commit c7cb42a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,8 @@ gem "sinatra", "~> 3.2"
1818
gem "yard", "~> 0.9", require: false
1919

2020
gemspec
21+
22+
if RUBY_VERSION > "3.4"
23+
gem "logger" # "warning: logger was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0."
24+
gem "ostruct" # "warning: ostruct was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0."
25+
end

0 commit comments

Comments
 (0)