Skip to content

Commit

Permalink
Explicitly add some gems that we need
Browse files Browse the repository at this point in the history
While running "bundle exec jekyll serve" there are a bunch of
warnings with the Ruby 3.3:

 logger was loaded from the standard library, but will no longer be part
 of the default gems starting from Ruby 3.5.0.
 You can add logger to your Gemfile or gemspec to silence this warning.
 csv was loaded from the standard library, but will no longer be part of
 the default gems starting from Ruby 3.4.0.
 You can add csv to your Gemfile or gemspec to silence this warning.
 /usr/share/ruby/json/common.rb:3: warning: ostruct was loaded from the
 standard library, but will no longer be part of the default gems starting
 from Ruby 3.5.0.
 You can add ostruct to your Gemfile or gemspec to silence this warning.
 .../vendor/ruby/3.3.0/gems/safe_yaml-1.0.5/lib/safe_yaml/load.rb:22:
 warning: base64 was loaded from the standard library, but will no longer
 be part of the default gems starting from Ruby 3.4.0.
 You can add base64 to your Gemfile or gemspec to silence this warning.

Add the gems to our Gemfile to silence the warnings.

Signed-off-by: Thomas Huth <[email protected]>
  • Loading branch information
huth committed Oct 30, 2024
1 parent 46a8c7c commit 5e0544c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,8 @@ end
gem "sassc", ">= 2.4.0"

gem "webrick", "~> 1.7"

gem "base64"
gem "csv"
gem "logger"
gem "ostruct"

0 comments on commit 5e0544c

Please sign in to comment.