mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2024-10-01 01:35:57 -04:00
49b7c15201
- Compress file AOD. - Let the server only use static files. - Don't add github-pages to jekyll-plugins group, due to the fact github-pages will behave differently when enabling production ENV. - Adds an extra 10s for the `host` to use `./buid.sh` due to compressing all files. - Resolves #2186
15 lines
457 B
Ruby
15 lines
457 B
Ruby
source "https://rubygems.org"
|
|
|
|
# Install github-pages gem (https://jekyllrb.com/docs/github-pages/)
|
|
gem "github-pages"
|
|
|
|
# Install jekyll-brotli gem (https://github.com/philnash/jekyll-brotli/)
|
|
gem 'jekyll-brotli'
|
|
|
|
# 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?
|
|
|