jekyll-thumbnail 0.2.0 → 0.2.3.pre.37

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b76703b231bc85e9aa7363ab1d63d13e9ea0f968
4
- data.tar.gz: a3b00ac8f6c27f027c4487306bfc337901fec15b
2
+ SHA256:
3
+ metadata.gz: 86f317c8a1941042b10ee09778329cc66eec26f0b81c2222364792ad415cdcd6
4
+ data.tar.gz: 9e2cbaed3a92f6793457158bd45a23c7ff39a30bc7f05d62d7ddfd5fb0781e46
5
5
  SHA512:
6
- metadata.gz: 8e0620abf3fb227f88af696669fc0742cdbe5fb9e73173911443abdc3f66340893fb78ac87877d8854a8aec5f5285b9c8383ec1a12e8b3d62d6d905c3ca916db
7
- data.tar.gz: c3a408d23702940182718f4774e0390dc015cc13ca8245a55b3afa6d00c43876087cb9c570b216555dd5299373e746b9b6cb1061059caa3896ba617e144d4b7e
6
+ metadata.gz: eca152f2ff2099db53aa28827e4d33450a1cf1e5b42164fff99d0758eb1ff44c82a74b5d2c0ceab2f6e4e33384e761801dcce894477f845f50ea3ccbab032b85
7
+ data.tar.gz: ef3f1fa3bc5b5fd189efffcc49c19b2b0cb0ed62945cb22181914244da937d26bb94b0f9da1f8ff65d7859cfeab06c4c7aadb14f608c395fe16b0dd8a7adeda1
data/.gitignore CHANGED
File without changes
data/.travis.yml CHANGED
@@ -1,3 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.3
3
+ - 2.3
4
+ deploy:
5
+ provider: rubygems
6
+ api_key: $RUBYGEMS_API_KEY
7
+ on:
8
+ all_branches: true
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
File without changes
File without changes
File without changes
@@ -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
 
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Thumbnail
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.3"
4
4
  end
5
5
  end
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.0
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: '0'
92
+ version: 1.3.1
93
93
  requirements: []
94
94
  rubyforge_project:
95
- rubygems_version: 2.5.2.1
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