-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (37 loc) · 2.05 KB
/
Copy pathGemfile
File metadata and controls
47 lines (37 loc) · 2.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
36
37
38
39
40
41
42
43
44
45
46
47
source "https://rubygems.org"
# gem "jekyll", "4.2.2" # pinned awaiting release of https://github.com/jekyll/jekyll/pull/9304
gem "jekyll", "4.4.1" # Upgreaded to the latest stable version
# gem "execjs", "2.9.1" # Previous version.
gem "execjs", "2.10.0" # Latest version as of 07/24/2025
gem "autoprefixer-rails"
# gem "webrick" # Jekyll 4.4.1 includes webrick by default, so this line is not needed.
group :jekyll_plugins do
gem 'jekyll-feed', '~> 0.17.0'
gem 'jekyll-redirect-from', '~> 0.16.0'
gem 'jekyll-paginate-v2', "3.0.0"
gem 'jekyll-sitemap', '~> 1.4'
gem 'jekyll-seo-tag', '~> 2.8'
gem 'jekyll-datapage-generator', '~> 1.4'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
#gem "html-proofer", "~> 3.19", ">= 3.19.4"
gem "html-proofer", "~> 3.18"
# installing csv to silence warning when running local server.
gem 'csv', '~> 3.3', '>= 3.3.5'
# installing base64 gem to avoid warning about missing base64 when running local server.
gem 'base64', '~> 0.3.0'
# Installing bigdecimal gem to avoid warning about missing bigdecimal when running local server.
gem 'bigdecimal', '~> 3.2', '>= 3.2.2'
# Installing wdm gem to avoid warning about missing wdm when running local server on Windows.
# This gem is not required for Jekyll 4.2.2, but it is needed for Windows users to watch files.
# Uncomment the line below if you are on Windows and need file watching capabilities.
# Note: The version is set to '~> 0.2.0' to match compatibility with Jekyll 4.2.2.
gem 'wdm', '~> 0.2.0' if Gem.win_platform?
# Install fiddle gem to avoid warning about missing fiddle when running local server.
# This gem is not required for Jekyll 4.2.2, but it is needed for Ruby versions that require it.
# Uncomment the line below if you need the fiddle gem.
# Note: The version is set to '~> 1.1' to match compatibility with Jekyll 4.2.2.
# gem 'fiddle', '~> 1.1', '>= 1.1.8'
# Installing logger gem to avoid warning about missing logger when running local server.
gem 'logger', '~> 1.7'