forked from skhan890/getmicah.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
24 lines (19 loc) · 762 Bytes
/
Copy pathGemfile
File metadata and controls
24 lines (19 loc) · 762 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
source 'https://rubygems.org'
# Specify Ruby version - GitHub Pages uses 3.3.4
# See: https://pages.github.com/versions/
ruby '>= 3.0' if ENV['CI'] || ENV['GITHUB_ACTIONS']
# GitHub Pages gem bundles Jekyll and all compatible plugins
# This ensures local builds match GitHub Pages behavior
gem 'github-pages', '~> 232', group: :jekyll_plugins
# Plugins (included in github-pages but explicit for clarity)
group :jekyll_plugins do
gem 'jekyll-sitemap', '~> 1.4'
gem 'jekyll-seo-tag', '~> 2.8'
end
# Windows and JRuby timezone support
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem 'tzinfo', '>= 1', '< 3'
gem 'tzinfo-data'
end
# Performance booster for watching directories on Windows
gem 'wdm', '~> 0.1', platforms: [:mingw, :x64_mingw, :mswin]