-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (23 loc) · 827 Bytes
/
Gemfile
File metadata and controls
30 lines (23 loc) · 827 Bytes
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
source "https://rubygems.org"
# Use Ruby 3.3.x (compatible with 3.3.6 and newer patch versions)
ruby "~> 3.3.0"
# Jekyll 4.x - latest stable version
gem "jekyll", "~> 4.3"
# Chirpy theme - modern, feature-rich theme perfect for technical blogs
gem "jekyll-theme-chirpy", "~> 7.2"
# Essential Jekyll plugins (many required by Chirpy)
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.17"
gem "jekyll-seo-tag", "~> 2.8"
gem "jekyll-sitemap", "~> 1.4"
gem "jekyll-paginate", "~> 1.1"
gem "jekyll-include-cache", "~> 0.2"
gem "jekyll-archives", "~> 2.2"
gem "jekyll-redirect-from", "~> 0.16"
end
# Required for serving the site locally
gem "webrick", "~> 1.8"
# Performance and compatibility
gem "kramdown-parser-gfm", "~> 1.1"
# HTML processing (required by Chirpy)
gem "html-proofer", "~> 5.0", group: :test