-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
35 lines (31 loc) · 1.05 KB
/
Gemfile
File metadata and controls
35 lines (31 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#==============================================================================
# Ruby Gemfile
#
# Purpose:
# Specifies Ruby gem dependencies for Jekyll site build.
#
# Ruby Version:
# 3.4.7+ (latest stable as of October 18, 2025)
#
# Key Dependencies:
# - jekyll 4.4.1+: Static site generator
# - jekyll-scholar: BibTeX bibliography support
# - jekyll-sitemap: Automatic sitemap.xml generation for search engines
# - webrick 1.9+: Ruby web server for local development
#
# Installation:
# gem install bundler
# bundle install
#
# Note:
# We use the latest stable versions. Gemfile.lock ensures consistent builds.
# Feel free to update dependencies or open an issue for compatibility concerns.
#==============================================================================
source 'https://rubygems.org'
ruby "3.4.7"
gem "jekyll", "4.4.1"
# gem "github-pages", "~> 232", group: :jekyll_plugins
gem "jekyll-scholar", group: :jekyll_plugins
gem "jekyll-sitemap", group: :jekyll_plugins
gem "webrick", "~> 1.9"
gem "wdm", ">= 0.1.0" if Gem.win_platform?