From c948011d5c44408da46cadc412222bc717fe48f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Morando?= <66503048+martinmorando@users.noreply.github.com> Date: Tue, 26 Mar 2024 15:35:56 -0300 Subject: [PATCH] update gemfile, add webrick to dependencies (#4) * update Gemfile.lock * add webrick to dependencies to fix potential problem when using Ruby version 3.0.0 or higher https://github.com/jekyll/jekyll/blob/dbbfc5d48c81cf424f29c7b0eebf10886bc99904/docs/_docs/index.md --- Gemfile | 3 ++- Gemfile.lock | 12 +++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Gemfile b/Gemfile index 56d1268..6adb595 100644 --- a/Gemfile +++ b/Gemfile @@ -6,4 +6,5 @@ gem "jekyll", "~> 4.2.0" group :jekyll_plugins do gem "jekyll-sitemap" gem 'jekyll-feed' -end \ No newline at end of file +end +gem "webrick", "~> 1.8" diff --git a/Gemfile.lock b/Gemfile.lock index b5cb7e5..05b08ba 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,10 +1,10 @@ GEM remote: https://rubygems.org/ specs: - addressable (2.8.5) + addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) colorator (1.1.0) - concurrent-ruby (1.2.2) + concurrent-ruby (1.2.3) em-websocket (0.5.3) eventmachine (>= 0.12.9) http_parser.rb (~> 0) @@ -12,7 +12,7 @@ GEM ffi (1.16.3) forwardable-extended (2.6.0) http_parser.rb (0.8.0) - i18n (1.14.1) + i18n (1.14.4) concurrent-ruby (~> 1.0) jekyll (4.2.2) addressable (~> 2.4) @@ -42,13 +42,13 @@ GEM kramdown-parser-gfm (1.1.0) kramdown (~> 2.0) liquid (4.0.4) - listen (3.8.0) + listen (3.9.0) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) mercenary (0.4.0) pathutil (0.16.2) forwardable-extended (~> 2.6) - public_suffix (5.0.3) + public_suffix (5.0.4) rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) @@ -60,6 +60,7 @@ GEM terminal-table (2.0.0) unicode-display_width (~> 1.1, >= 1.1.1) unicode-display_width (1.8.0) + webrick (1.8.1) PLATFORMS x86_64-linux @@ -68,6 +69,7 @@ DEPENDENCIES jekyll (~> 4.2.0) jekyll-feed jekyll-sitemap + webrick (~> 1.8) BUNDLED WITH 2.4.20