jekyll-brotli 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -4
- data/CHANGELOG.md +7 -1
- data/lib/jekyll/brotli/compressor.rb +1 -1
- data/lib/jekyll/brotli/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73109bbbd64c95c1e4faf0942548d26408cf49eae0daf2208889bc347bd09875
|
|
4
|
+
data.tar.gz: db719fab85a82b51265f2184f5698265b041e321783148446c86109fe8e287a9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5ad5ec86cd1b3fae3611f932ca3c66a536d54c061e231a12b4ad72b14b5a6b7db1b307307590f99da07ebffe90f7df797be0daa79ac9467588681d94490c51b
|
|
7
|
+
data.tar.gz: 5b768f537e61b0e8729e8fe801f55e3ca1d0106a159add09cac7495c19d1e0c3f7eaed99b1b7a6d9578cceb41aed68e55e5bb878e46c187781515771eb69e95a
|
data/.travis.yml
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
sudo: false
|
|
2
2
|
language: ruby
|
|
3
3
|
rvm:
|
|
4
|
+
- 2.7
|
|
4
5
|
- 2.6
|
|
5
6
|
- 2.5
|
|
6
7
|
- 2.4
|
|
7
|
-
- 2.3
|
|
8
8
|
- ruby-head
|
|
9
9
|
env:
|
|
10
10
|
- 'JEKYLL_VERSION="~> 3.0"'
|
|
@@ -12,7 +12,4 @@ env:
|
|
|
12
12
|
matrix:
|
|
13
13
|
allow_failures:
|
|
14
14
|
- rvm: ruby-head
|
|
15
|
-
exclude:
|
|
16
|
-
- rvm: 2.3
|
|
17
|
-
env: 'JEKYLL_VERSION="~> 4.0"'
|
|
18
15
|
script: bundle exec rspec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## Ongoing [☰](https://github.com/philnash/jekyll-brotli/compare/v2.2.
|
|
3
|
+
## Ongoing [☰](https://github.com/philnash/jekyll-brotli/compare/v2.2.1...master)
|
|
4
|
+
|
|
5
|
+
## 2.2.1 (2020-01-30) [☰](https://github.com/philnash/jekyll-brotli/compare/v2.2.0...v2.2.1)
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Fixes the path handed to `Dir.glob` by using `File.join` instead of string concatenation
|
|
4
10
|
|
|
5
11
|
## 2.2.0 (2019-12-31) [☰](https://github.com/philnash/jekyll-brotli/compare/v2.1.0...v2.2.0)
|
|
6
12
|
|
|
@@ -49,7 +49,7 @@ module Jekyll
|
|
|
49
49
|
# @return void
|
|
50
50
|
def self.compress_directory(dir, site)
|
|
51
51
|
extensions = compressable_extensions(site).join(',')
|
|
52
|
-
files = Dir.glob(dir
|
|
52
|
+
files = Dir.glob(File.join(dir, "**", "*{#{extensions}}"))
|
|
53
53
|
files.each do |file|
|
|
54
54
|
next unless regenerate? file, site
|
|
55
55
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-brotli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Phil Nash
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
150
150
|
- !ruby/object:Gem::Version
|
|
151
151
|
version: '0'
|
|
152
152
|
requirements: []
|
|
153
|
-
rubygems_version: 3.0.
|
|
153
|
+
rubygems_version: 3.0.3
|
|
154
154
|
signing_key:
|
|
155
155
|
specification_version: 4
|
|
156
156
|
summary: Generate brotli compressed assets and files for your Jekyll site at build
|