jekyll-webp-resize 1.0.7 → 1.0.9
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 +5 -5
- data/README.md +7 -1
- data/jekyll-webp-resize.gemspec +11 -2
- data/lib/jekyll-webp-resize/version.rb +1 -1
- metadata +10 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 27a41829141518e60493ee9b00f24f0ee49f6d51a1e04cdda7e2fffbc81b7f50
|
|
4
|
+
data.tar.gz: 58698401405f49f51a78e6622d910a46538c1c9080f8b42bcac51662621ce0c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba7013957ec85c992a62805ade274ceab8f30233851ebd8ef438da98a4837e4ceebb6943284ed50f9dbcbb2a3bab4348d9bcd67fafb9ee3d129c4b1f70eda8a3
|
|
7
|
+
data.tar.gz: 6ae2a430676cc695ad6ce8ec882feb12574bd6dcf528a2abe1464404a5b098c3f25e6643dc141ebd15538fc28497d051acc476b2dbd4fcb3e9869491ed4c6e8a
|
data/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
# WebP Generator for Jekyll [DEPRECATED]
|
|
2
|
+
|
|
3
|
+
This gem is not supported anymore. If you want similar functionality **please use [jekyll-imagemagick](https://gitlab.com/emmmile/jekyll-imagemagick)**.
|
|
4
|
+
|
|
5
|
+
If you just need plain webp conversion, without imagemagick resizing or filters go to the original version [jekyll-webp](https://github.com/sverrirs/jekyll-webp).
|
|
6
|
+
|
|
7
|
+
---
|
|
1
8
|
|
|
2
|
-
# WebP Generator for Jekyll
|
|
3
9
|
WebP Image Generator for Jekyll Sites can automatically generate WebP images for all images on your static site and serve them when possible.
|
|
4
10
|
> Read more about this tool on my blog at <a href="https://blog.sverrirs.com/2016/06/webp-generator-for-jekyll-sites.html" target="_blank">blog.sverrirs.com</a>
|
|
5
11
|
|
data/jekyll-webp-resize.gemspec
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
|
+
require 'date'
|
|
2
3
|
require_relative 'lib/jekyll-webp-resize/version'
|
|
3
4
|
|
|
5
|
+
warn "[DEPRECATION] This gem has been renamed to jekyll-imagemagick and will no longer be supported. " \
|
|
6
|
+
"Please switch to jekyll-imagemagick as soon as possible."
|
|
7
|
+
|
|
4
8
|
Gem::Specification.new do |spec|
|
|
5
9
|
spec.name = "jekyll-webp-resize"
|
|
6
10
|
spec.version = Jekyll::Webp::VERSION
|
|
@@ -11,8 +15,8 @@ Gem::Specification.new do |spec|
|
|
|
11
15
|
spec.homepage = "https://github.com/emmmile/jekyll-webp"
|
|
12
16
|
spec.license = "MIT"
|
|
13
17
|
|
|
14
|
-
spec.summary = %q{WebP image generator for Jekyll 3 websites}
|
|
15
|
-
spec.description = %q{WebP Image Generator for Jekyll 3 Sites that automatically generate WebP images for all images on your static site and serves them when possible.}
|
|
18
|
+
spec.summary = %q{[DEPRECATED] WebP image generator for Jekyll 3 websites}
|
|
19
|
+
spec.description = %q{[DEPRECATED] WebP Image Generator for Jekyll 3 Sites that automatically generate WebP images for all images on your static site and serves them when possible.}
|
|
16
20
|
|
|
17
21
|
spec.files = Dir['CODE_OF_CONDUCT.md', 'README.md', 'LICENSE', 'Rakefile', '*.gemspec', 'Gemfile', 'lib/**/*', 'spec/**/*', 'bin/**/*']
|
|
18
22
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
@@ -25,4 +29,9 @@ Gem::Specification.new do |spec|
|
|
|
25
29
|
spec.add_development_dependency "minitest", '~> 5.4', '>= 5.4.3'
|
|
26
30
|
spec.add_runtime_dependency "fastimage", '~> 2.1'
|
|
27
31
|
# spec.add_runtime_dependency "rmagick", "~> 2.16"
|
|
32
|
+
spec.post_install_message = <<-MESSAGE
|
|
33
|
+
! The jekyll-webp-resize gem has been deprecated and has been replaced by jekyll-imagemagik.
|
|
34
|
+
! See: https://rubygems.org/gems/jekyll-imagemagick
|
|
35
|
+
! And: https://gitlab.com/emmmile/jekyll-imagemagick
|
|
36
|
+
MESSAGE
|
|
28
37
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-webp-resize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sverrir Sigmundarson
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2018-08-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: jekyll
|
|
@@ -87,8 +87,8 @@ dependencies:
|
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: '2.1'
|
|
90
|
-
description: WebP Image Generator for Jekyll 3 Sites that automatically
|
|
91
|
-
images for all images on your static site and serves them when possible.
|
|
90
|
+
description: "[DEPRECATED] WebP Image Generator for Jekyll 3 Sites that automatically
|
|
91
|
+
generate WebP images for all images on your static site and serves them when possible."
|
|
92
92
|
email:
|
|
93
93
|
- jekyll@sverrirs.com
|
|
94
94
|
- emilio.deltessa@gmail.com
|
|
@@ -121,7 +121,10 @@ homepage: https://github.com/emmmile/jekyll-webp
|
|
|
121
121
|
licenses:
|
|
122
122
|
- MIT
|
|
123
123
|
metadata: {}
|
|
124
|
-
post_install_message:
|
|
124
|
+
post_install_message: |2
|
|
125
|
+
! The jekyll-webp-resize gem has been deprecated and has been replaced by jekyll-imagemagik.
|
|
126
|
+
! See: https://rubygems.org/gems/jekyll-imagemagick
|
|
127
|
+
! And: https://gitlab.com/emmmile/jekyll-imagemagick
|
|
125
128
|
rdoc_options: []
|
|
126
129
|
require_paths:
|
|
127
130
|
- lib
|
|
@@ -137,8 +140,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
137
140
|
version: '0'
|
|
138
141
|
requirements: []
|
|
139
142
|
rubyforge_project:
|
|
140
|
-
rubygems_version: 2.
|
|
143
|
+
rubygems_version: 2.7.7
|
|
141
144
|
signing_key:
|
|
142
145
|
specification_version: 4
|
|
143
|
-
summary: WebP image generator for Jekyll 3 websites
|
|
146
|
+
summary: "[DEPRECATED] WebP image generator for Jekyll 3 websites"
|
|
144
147
|
test_files: []
|