dependabot[bot] 19be3880f1
Bump jekyll from 4.2.2 to 4.3.0 (#24643)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-22 15:15:55 +02:00

34 lines
827 B
Ruby

source 'https://rubygems.org'
ruby '> 2.5.0'
group :development do
gem 'rake', '13.0.6'
gem 'jekyll', '4.3.0'
gem 'compass', '1.0.3'
gem 'sass-globbing', '1.1.5'
gem 'stringex', '2.8.5'
# > 2.1.0 causes slowdowns https://github.com/sass/sassc-ruby/issues/189
gem 'sassc', '2.1.0'
end
group :jekyll_plugins do
gem 'jekyll-paginate', '1.1.0'
gem 'jekyll-sitemap', '1.4.0'
gem 'jekyll-commonmark', '1.4.0'
gem 'jekyll-toc', '0.17.1'
end
gem 'sinatra', '3.0.2'
gem 'nokogiri', '1.13.9'
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
gem 'tzinfo', '~> 2.0'
gem 'tzinfo-data'
end
# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.0" if Gem.win_platform?