mirror of
https://github.com/cliffe/HacktivityLabSheets.git
synced 2026-02-22 11:48:19 +00:00
- Upgraded Jekyll from 3.10.0 to 4.3.0 and updated related plugins for enhanced functionality. - Modified the Gemfile to specify versions for kramdown, kramdown-parser-gfm, and rouge. - Updated the GitHub Actions workflow to use Ruby 3.1 and optimized the bundler installation process. - Enhanced the Jekyll build command with version checks for better debugging and visibility.
28 lines
822 B
Ruby
28 lines
822 B
Ruby
source 'https://rubygems.org'
|
|
|
|
# Jekyll and core dependencies
|
|
gem 'jekyll', '~> 4.3.0'
|
|
gem 'jekyll-feed', '~> 0.12'
|
|
gem 'jekyll-sitemap', '~> 1.4'
|
|
gem 'jekyll-seo-tag', '~> 2.8'
|
|
|
|
# Markdown processor
|
|
gem 'kramdown', '~> 2.4'
|
|
gem 'kramdown-parser-gfm', '~> 1.1'
|
|
|
|
# Syntax highlighting
|
|
gem 'rouge', '~> 4.0'
|
|
|
|
# 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] |