Gemfile 545 B

123456789101112131415161718192021
  1. source 'https://rubygems.org'
  2. group :jekyll_plugins do
  3. gem 'github-pages'
  4. gem 'jekyll-feed', '~> 0.6'
  5. # Textbook plugins
  6. gem 'jekyll-redirect-from'
  7. gem 'jekyll-scholar'
  8. end
  9. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  10. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
  11. # Performance-booster for watching directories on Windows
  12. gem 'wdm', '~> 0.1.0' if Gem.win_platform?
  13. # Development tools
  14. gem 'guard', '~> 2.14.2'
  15. gem 'guard-jekyll-plus', '~> 2.0.2'
  16. gem 'guard-livereload', '~> 2.5.2'