Merge remote-tracking branch 'gusted/Brotli-Patch' into jekyll-improvements

This commit is contained in:
Jonah Aragon 2021-01-15 14:09:07 -06:00
commit 23116756d0
No known key found for this signature in database
GPG Key ID: 6A957C9A9A9429F7
4 changed files with 21 additions and 12 deletions

View File

@ -1,12 +1,10 @@
source "https://rubygems.org" source "https://rubygems.org"
# Install github-pages gem (https://jekyllrb.com/docs/github-pages/) # Install github-pages gem (https://jekyllrb.com/docs/github-pages/)
gem "github-pages", group: :jekyll_plugins gem "github-pages"
# Plugins # Install jekyll-brotli gem (https://github.com/philnash/jekyll-brotli/)
group :jekyll_plugins do gem 'jekyll-brotli'
# example: gem "jekyll-feed", "~> 0.6"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]

View File

@ -9,6 +9,7 @@ GEM
zeitwerk (~> 2.2, >= 2.2.2) zeitwerk (~> 2.2, >= 2.2.2)
addressable (2.7.0) addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0) public_suffix (>= 2.0.2, < 5.0)
brotli (0.2.3)
coffee-script (2.4.1) coffee-script (2.4.1)
coffee-script-source coffee-script-source
execjs execjs
@ -26,9 +27,11 @@ GEM
ffi (>= 1.3.0) ffi (>= 1.3.0)
eventmachine (1.2.7) eventmachine (1.2.7)
execjs (2.7.0) execjs (2.7.0)
faraday (1.2.0) faraday (1.3.0)
faraday-net_http (~> 1.0)
multipart-post (>= 1.2, < 3) multipart-post (>= 1.2, < 3)
ruby2_keywords ruby2_keywords
faraday-net_http (1.0.1)
ffi (1.14.2) ffi (1.14.2)
forwardable-extended (2.6.0) forwardable-extended (2.6.0)
gemoji (3.0.1) gemoji (3.0.1)
@ -103,6 +106,9 @@ GEM
safe_yaml (~> 1.0) safe_yaml (~> 1.0)
jekyll-avatar (0.7.0) jekyll-avatar (0.7.0)
jekyll (>= 3.0, < 5.0) jekyll (>= 3.0, < 5.0)
jekyll-brotli (2.2.1)
brotli (~> 0.2.0)
jekyll (>= 3.0, < 5.0)
jekyll-coffeescript (1.1.1) jekyll-coffeescript (1.1.1)
coffee-script (~> 2.2) coffee-script (~> 2.2)
coffee-script-source (~> 1.11.1) coffee-script-source (~> 1.11.1)
@ -203,21 +209,23 @@ GEM
rb-fsevent (~> 0.10, >= 0.10.3) rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10) rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.3.6) mercenary (0.3.6)
mini_portile2 (2.4.0) mini_portile2 (2.5.0)
minima (2.5.1) minima (2.5.1)
jekyll (>= 3.5, < 5.0) jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9) jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1) jekyll-seo-tag (~> 2.1)
minitest (5.14.2) minitest (5.14.3)
multipart-post (2.1.1) multipart-post (2.1.1)
nokogiri (1.10.10) nokogiri (1.11.1)
mini_portile2 (~> 2.4.0) mini_portile2 (~> 2.5.0)
octokit (4.19.0) racc (~> 1.4)
octokit (4.20.0)
faraday (>= 0.9) faraday (>= 0.9)
sawyer (~> 0.8.0, >= 0.5.3) sawyer (~> 0.8.0, >= 0.5.3)
pathutil (0.16.2) pathutil (0.16.2)
forwardable-extended (~> 2.6) forwardable-extended (~> 2.6)
public_suffix (3.1.1) public_suffix (3.1.1)
racc (1.5.2)
rb-fsevent (0.10.4) rb-fsevent (0.10.4)
rb-inotify (0.10.1) rb-inotify (0.10.1)
ffi (~> 1.0) ffi (~> 1.0)
@ -256,6 +264,7 @@ PLATFORMS
DEPENDENCIES DEPENDENCIES
github-pages github-pages
jekyll-brotli
tzinfo-data tzinfo-data
BUNDLED WITH BUNDLED WITH

View File

@ -6,7 +6,9 @@ production_url: "https://www.privacytools.io"
sass: sass:
style: compressed style: compressed
plugins: plugins:
- github-pages
- jekyll-sitemap - jekyll-sitemap
- jekyll-brotli
sitemap: sitemap:
file: "/sitemap.xml" file: "/sitemap.xml"
include: [".well-known"] include: [".well-known"]

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env sh
set -e # halt script on error set -e # halt script on error
bundle exec jekyll build JEKYLL_ENV=production bundle exec jekyll build