jekyll-zopfli 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/README.md +3 -1
- data/lib/jekyll/zopfli.rb +3 -1
- data/lib/jekyll/zopfli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bf1c26f0d54b5d5ae1168ddef0f4b2dc09377b15dbf44bdec2c4348931ded5a
|
4
|
+
data.tar.gz: 805cb2c1623856635697dadd413de1d0b9c77a39375aefac88b9176f84d3ea7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1a01caa7da984a2855e300ece77fb473130657f874d327d4d35497a69cf3b1f1c6360a5df8b535aed4a51003aed022dfb30763f1b960d9945b796a76aa47ad3
|
7
|
+
data.tar.gz: 1b48d8e7f514bcb52dc0e6ca883196a6228a1ce5f64dd2a76d5a42a678287ab4d6a86dd3f195ee9accd652c4a159e1a40d9f5446d254c95400a57d973d19d4f9
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -30,7 +30,9 @@ bundle install
|
|
30
30
|
|
31
31
|
## Usage
|
32
32
|
|
33
|
-
Once you have the gem installed, run `bundle exec jekyll build`. In your destination directory (`_site` by default) you will find gzipped files.
|
33
|
+
Once you have the gem installed, run `JEKYLL_ENV=production bundle exec jekyll build`. In your destination directory (`_site` by default) you will find gzipped files.
|
34
|
+
|
35
|
+
Due to the time it takes to generate zopfli files, this plugin only works when the `JEKYLL_ENV` environment variable is set to `production`.
|
34
36
|
|
35
37
|
### Serving pre-compiled gzip files
|
36
38
|
|
data/lib/jekyll/zopfli.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-zopfli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phil Nash
|
@@ -138,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
138
138
|
version: '0'
|
139
139
|
requirements: []
|
140
140
|
rubyforge_project:
|
141
|
-
rubygems_version: 2.7.
|
141
|
+
rubygems_version: 2.7.4
|
142
142
|
signing_key:
|
143
143
|
specification_version: 4
|
144
144
|
summary: Generate gzipped assets and files for your Jekyll site at build time using
|