12345678910111213141516171819202122 |
- source "https://rubygems.org"
- gem "jekyll", "~> 3.8.4"
- # If you want to use GitHub Pages, remove the "gem "jekyll"" above and
- # uncomment the line below. To upgrade, run `bundle update github-pages`.
- # gem "github-pages", group: :jekyll_plugins
- # If you have any plugins, put them here!
- group :jekyll_plugins do
- gem "jekyll-feed", "~> 0.6"
- gem 'jekyll-paginate'
- gem 'jekyll-redirect-from'
- gem 'jekyll-sitemap'
- gem 'jekyll-tidy'
- end
- # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
- gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
- # Performance-booster for watching directories on Windows
- gem "wdm", "~> 0.1.0" if Gem.win_platform?
|