jekyll-thumb 0.1.0 → 0.1.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/README.md +1 -1
- data/jekyll-thumb.gemspec +1 -5
- data/lib/jekyll/thumb/version.rb +1 -1
- metadata +2 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf6ed56f07caa1a8f50e4272eb28c6c08890e4ebf60b578c958f58896f07172f
|
|
4
|
+
data.tar.gz: 50596b485ece1572822ff65173820aa2906441b94cad7e3f0260f614dbca42cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce3f4396cb00f541f641ccba0aab2c8503cf3cb8c657e48e2777d2d557fb6cf2c2b5232603396a120d582b24b787381207f2a56b92c2731db5e47cefd440329f
|
|
7
|
+
data.tar.gz: 10c116e94d4c96ef1a98dd5912720e35b7101758e4f5ff6278d99b4732ae6c43830fc3512a2960761332bbef5ed614712b076cc8f9c69c531e065c360a7b3706
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This Jekyll plugin automatically generates image thumnails using the [vips](https://jcupitt.github.io/libvips) library and the accompanying ruby wrapper, [ruby-vips.](https://github.com/jcupitt/ruby-vips)
|
|
4
4
|
|
|
5
|
-
libvips is like imagemagick but
|
|
5
|
+
libvips is like imagemagick but more modern.
|
|
6
6
|
|
|
7
7
|
The plugin adds a `thumb` Liquid tag that can be used like so:
|
|
8
8
|
|
data/jekyll-thumb.gemspec
CHANGED
|
@@ -9,11 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Jonathan Davies"]
|
|
10
10
|
spec.email = ["jonnie@cleverna.me"]
|
|
11
11
|
spec.summary = %q{This Jekyll plugin adds a thumb tag which will autogenerate image thumbnails}
|
|
12
|
-
spec.description = %q{
|
|
13
|
-
This Jekyll plugin autogenerates image thumbnails using the vips library
|
|
14
|
-
|
|
15
|
-
\{% thumb src="/image.png" width="100" %\}
|
|
16
|
-
}
|
|
12
|
+
spec.description = %q{This Jekyll plugin autogenerates image thumbnails using the vips library}
|
|
17
13
|
spec.homepage = "https://github.com/JonnieCache/jekyll-thumb"
|
|
18
14
|
spec.license = "MIT"
|
|
19
15
|
|
data/lib/jekyll/thumb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-thumb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Davies
|
|
@@ -66,11 +66,7 @@ dependencies:
|
|
|
66
66
|
- - ">"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '2'
|
|
69
|
-
description:
|
|
70
|
-
|
|
71
|
-
This Jekyll plugin autogenerates image thumbnails using the vips library
|
|
72
|
-
|
|
73
|
-
{% thumb src="/image.png" width="100" %}
|
|
69
|
+
description: This Jekyll plugin autogenerates image thumbnails using the vips library
|
|
74
70
|
email:
|
|
75
71
|
- jonnie@cleverna.me
|
|
76
72
|
executables: []
|