From 51611a85e07a7f6e2c29f054efe359d9b0907512 Mon Sep 17 00:00:00 2001 From: natrasta2_Dev <53398482+natrasta2dev@users.noreply.github.com> Date: Tue, 25 Nov 2025 10:59:34 +0100 Subject: [PATCH] build: add Gemfile with Jekyll 3.10 dependencies --- Gemfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Gemfile diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..0a3ffa7 --- /dev/null +++ b/Gemfile @@ -0,0 +1,19 @@ +source "https://rubygems.org" + +# Use Jekyll 3.9 which is more stable and compatible with GitHub Pages +gem "jekyll", "~> 3.9" +gem "jekyll-feed", "~> 0.15" +gem "jekyll-sitemap", "~> 1.4" +gem "kramdown", "~> 2.3" +gem "kramdown-parser-gfm", "~> 1.1" + +# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem +# and associated library. +platforms :mingw, :x64_mingw, :mswin, :jruby do + gem "tzinfo", ">= 1", "< 3" + gem "tzinfo-data" +end + +# Performance and relevance +gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] +