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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 84b85105511dcdb6575f7db0acd8470e407cb5965c3f144b02ab6af9fdc72a2d
4
- data.tar.gz: '096662500fe25edd418b542a96ced02ef141a628fc721a8bdfcf5dda37683345'
3
+ metadata.gz: a5a15728a0433da2e53ee8c73a691393be1f048eabca4a8074c948b952c27d57
4
+ data.tar.gz: eca3165043c17a48cc537c52898944dd4e5fe719e61e7074831a0c7d772e0b38
5
5
  SHA512:
6
- metadata.gz: 7b08a9e6747ffc5e777052fc5a953f6fd86aa2c79fbbf9576857e64a23bbe7cc50bafbc9b390190c3e78039433697a03c072e4e0e54d99dbeeb7630bbe1c1510
7
- data.tar.gz: fbda567d8787b3b71baaa98747e569c94e249283c5dbcd4d560c32af74b41202dcc8d2a2d101563b6da15bbc4f36eec58562179f4393869721ea58dc876dca97
6
+ metadata.gz: 679f7fe3af42e77876b5ad8c5c914afa25d9947ced9876666e771373bb9381a8b6a574559a82701af804feb932934ba0ae96e78e32220161f1dc9d061f84aaa9
7
+ data.tar.gz: 674c4f30391cf964d182b10831b108b07ad882380b174f3cc9824054e67246f8c322beff6d4164b0b5ffa9c7d767bff1da6546d76e25f73ac57cce898ab78401
data/.travis.yml CHANGED
@@ -3,6 +3,4 @@ rvm:
3
3
  - 2.3
4
4
  deploy:
5
5
  provider: rubygems
6
- api_key: $RUBYGEMS_API_KEY
7
- on:
8
- all_branches: true
6
+ api_key: $RUBYGEMS_API_KEY
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
 
@@ -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 = ENV['TRAVIS_TAG'] || Jekyll::Thumbnail::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
 
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Thumbnail
3
- VERSION = "0.2.3"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
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.pre.36
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: 1.3.1
92
+ version: '0'
93
93
  requirements: []
94
94
  rubyforge_project:
95
95
  rubygems_version: 2.7.8