Files
HacktivityLabSheets/Gemfile
Z. Cliffe Schreuders 0566a6deef Add jekyll-seo-tag plugin and update Gemfile for additional dependencies
- Included the jekyll-seo-tag plugin in the configuration for improved SEO capabilities.
- Updated the Gemfile to add jekyll-seo-tag and other necessary gems for enhanced functionality.
- Created a new GitHub Actions workflow for deploying the Jekyll site to GitHub Pages.
2025-09-23 12:54:59 +01:00

27 lines
757 B
Ruby

source 'https://rubygems.org'
# Jekyll and core dependencies
gem 'jekyll', '~> 4.3.0'
gem 'jekyll-feed', '~> 0.12'
gem 'jekyll-sitemap'
gem 'jekyll-seo-tag'
# Markdown processor
gem 'kramdown-parser-gfm'
# Syntax highlighting
gem 'rouge'
# 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.1', :platforms => [:mingw, :x64_mingw, :mswin]
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
# do not have a Java counterpart.
gem 'http_parser.rb', '~> 0.6.0', :platforms => [:jruby]