mirror of
https://github.com/cliffe/HacktivityLabSheets.git
synced 2026-02-20 13:50:46 +00:00
- Changed the permalink structure in the configuration to use 'categories' instead of 'category' for lab URLs. - Downgraded Jekyll version in the Gemfile from 4.3.0 to 3.10.0 to ensure compatibility with existing plugins and workflows. - Updated GitHub Actions workflow to use Ruby 3.0 and streamlined the build command for Jekyll. - Modified lab markdown files to reflect the new 'categories' field for better organization.
27 lines
758 B
Ruby
27 lines
758 B
Ruby
source 'https://rubygems.org'
|
|
|
|
# Jekyll and core dependencies
|
|
gem 'jekyll', '~> 3.10.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] |