jekyll-thumbnail 0.2.0 → 0.2.3.pre.37
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +0 -0
- data/.travis.yml +6 -1
- data/Gemfile +0 -0
- data/LICENSE.txt +0 -0
- data/Rakefile +0 -0
- data/docs/README.md +1 -1
- data/docs/_config.yml +0 -0
- data/img/sample_rectangle.jpg +0 -0
- data/img/sample_square.jpg +0 -0
- data/img/watermark-50x50.png +0 -0
- data/jekyll-thumbnail.gemspec +2 -1
- data/lib/jekyll-thumbnail/version.rb +1 -1
- data/lib/jekyll-thumbnail.rb +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 86f317c8a1941042b10ee09778329cc66eec26f0b81c2222364792ad415cdcd6
|
4
|
+
data.tar.gz: 9e2cbaed3a92f6793457158bd45a23c7ff39a30bc7f05d62d7ddfd5fb0781e46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eca152f2ff2099db53aa28827e4d33450a1cf1e5b42164fff99d0758eb1ff44c82a74b5d2c0ceab2f6e4e33384e761801dcce894477f845f50ea3ccbab032b85
|
7
|
+
data.tar.gz: ef3f1fa3bc5b5fd189efffcc49c19b2b0cb0ed62945cb22181914244da937d26bb94b0f9da1f8ff65d7859cfeab06c4c7aadb14f608c395fe16b0dd8a7adeda1
|
data/.gitignore
CHANGED
File without changes
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
File without changes
|
data/LICENSE.txt
CHANGED
File without changes
|
data/Rakefile
CHANGED
File without changes
|
data/docs/README.md
CHANGED
@@ -16,7 +16,7 @@ gem 'jekyll-thumbnail'
|
|
16
16
|
Then, use it in your Liquid templates as follows:
|
17
17
|
|
18
18
|
```
|
19
|
-
{% thumbnail path/to/image.jpg 50x50 %}
|
19
|
+
{{ "{% thumbnail path/to/image.jpg 50x50 " }}%}
|
20
20
|
```
|
21
21
|
This will pass the image through the thumbnailer, and generate a thumbs/ directory where the image is located.
|
22
22
|
|
data/docs/_config.yml
CHANGED
File without changes
|
data/img/sample_rectangle.jpg
CHANGED
File without changes
|
data/img/sample_square.jpg
CHANGED
File without changes
|
data/img/watermark-50x50.png
CHANGED
File without changes
|
data/jekyll-thumbnail.gemspec
CHANGED
@@ -6,7 +6,8 @@ require "jekyll-thumbnail/version"
|
|
6
6
|
|
7
7
|
Gem::Specification.new do |spec|
|
8
8
|
spec.name = "jekyll-thumbnail"
|
9
|
-
spec.version = Jekyll::Thumbnail::VERSION
|
9
|
+
spec.version = ENV['TRAVIS_TAG'] || Jekyll::Thumbnail::VERSION
|
10
|
+
spec.version = "#{spec.version}-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS']
|
10
11
|
spec.authors = ["Doug Hatcher"]
|
11
12
|
spec.email = ["superterran@gmail.com"]
|
12
13
|
|
data/lib/jekyll-thumbnail.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-thumbnail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3.pre.37
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Doug Hatcher
|
@@ -87,12 +87,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
87
87
|
version: '0'
|
88
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
89
|
requirements:
|
90
|
-
- - "
|
90
|
+
- - ">"
|
91
91
|
- !ruby/object:Gem::Version
|
92
|
-
version:
|
92
|
+
version: 1.3.1
|
93
93
|
requirements: []
|
94
94
|
rubyforge_project:
|
95
|
-
rubygems_version: 2.
|
95
|
+
rubygems_version: 2.7.8
|
96
96
|
signing_key:
|
97
97
|
specification_version: 4
|
98
98
|
summary: Provides an image thumbnailer with watermark support. Adds a liquid tag
|