Skip to content

Commit

Permalink
updated jekyll + removed plugin webrick which was apparently not used…
Browse files Browse the repository at this point in the history
… and caused pbs
  • Loading branch information
anquetil committed Jan 15, 2025
1 parent d9b9dd4 commit ec2e91d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
17 changes: 11 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
source "https://rubygems.org"

gem "jekyll", ">= 3.8.5"
gem "webrick"
gem "jekyll", "~> 4.3.4"
gem "minima", "~> 2.5"

group :jekyll_plugins do
gem "jekyll-feed", "~> 0.6"
gem "jekyll-feed", "~> 0.12"
gem "jekyll-paginate", "~> 1.1.0"
gem "jemoji"
gem "jekyll-sitemap"
Expand All @@ -14,8 +14,13 @@ group :jekyll_plugins do
gem "jekyll-toc"
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# 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-booster for watching directories on Windows
gem "wdm", "~> 0.1.0" if Gem.win_platform?
gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin]

1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ tag_page_dir: posts/tag
tag_permalink_style: pretty

# Build settings
theme: minima
markdown: kramdown
highlighter: rouge
paginate: 5
Expand Down

0 comments on commit ec2e91d

Please sign in to comment.