19 lines
444 B
Ruby
19 lines
444 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gem 'jekyll', '~> 3.7.3'
|
|
|
|
gem 'minima', '~> 2.0'
|
|
|
|
group :jekyll_plugins do
|
|
gem 'github-pages', '~> 183'
|
|
gem 'jekyll-algolia', path: '../../'
|
|
gem 'jekyll-feed', '~> 0.6'
|
|
gem 'jekyll-paginate', '~> 1.1'
|
|
gem 'jekyll-tagging', '~> 1.1'
|
|
end
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
|