jekyll-thumbnail 0.pre.36 → 0
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 -3
- data/docs/README.md +1 -1
- data/jekyll-thumbnail.gemspec +3 -2
- data/lib/jekyll-thumbnail/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: a5a15728a0433da2e53ee8c73a691393be1f048eabca4a8074c948b952c27d57
|
4
|
+
data.tar.gz: eca3165043c17a48cc537c52898944dd4e5fe719e61e7074831a0c7d772e0b38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 679f7fe3af42e77876b5ad8c5c914afa25d9947ced9876666e771373bb9381a8b6a574559a82701af804feb932934ba0ae96e78e32220161f1dc9d061f84aaa9
|
7
|
+
data.tar.gz: 674c4f30391cf964d182b10831b108b07ad882380b174f3cc9824054e67246f8c322beff6d4164b0b5ffa9c7d767bff1da6546d76e25f73ac57cce898ab78401
|
data/.travis.yml
CHANGED
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
|
-
{
|
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/jekyll-thumbnail.gemspec
CHANGED
@@ -6,8 +6,9 @@ require "jekyll-thumbnail/version"
|
|
6
6
|
|
7
7
|
Gem::Specification.new do |spec|
|
8
8
|
spec.name = "jekyll-thumbnail"
|
9
|
-
spec.version =
|
10
|
-
spec.version = "#{spec.version}-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS']
|
9
|
+
spec.version = Jekyll::Thumbnail::VERSION
|
10
|
+
spec.version = "#{spec.version}-alpha-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS'] && !ENV['TRAVIS_TAG']
|
11
|
+
spec.version = ENV['TRAVIS_TAG'] if ENV['TRAVIS'] && ENV['TRAVIS_TAG']
|
11
12
|
spec.authors = ["Doug Hatcher"]
|
12
13
|
spec.email = ["superterran@gmail.com"]
|
13
14
|
|
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
|
4
|
+
version: '0'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Doug Hatcher
|
@@ -87,9 +87,9 @@ 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: '0'
|
93
93
|
requirements: []
|
94
94
|
rubyforge_project:
|
95
95
|
rubygems_version: 2.7.8
|