Gemfile 612 B

12345678910111213141516171819202122
  1. source "https://rubygems.org"
  2. gem 'github-pages', group: :jekyll_plugins
  3. # If you have any plugins, put them here!
  4. group :jekyll_plugins do
  5. gem "jekyll-feed"
  6. gem "jekyll-paginate"
  7. gem "jekyll-remote-theme"
  8. gem "jekyll-include-cache"
  9. gem "minimal-mistakes-jekyll"
  10. end
  11. # Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
  12. # and associated library.
  13. install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
  14. gem "tzinfo", "~> 1.2"
  15. gem "tzinfo-data"
  16. end
  17. # Performance-booster for watching directories on Windows
  18. gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?