jekyll-figure 0.0.2 → 0.0.3
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 +5 -5
- data/.travis.yml +12 -6
- data/README.md +4 -2
- data/jekyll-figure.gemspec +2 -2
- data/lib/{jekyll/figure.rb → jekyll-figure.rb} +0 -0
- data/lib/{jekyll/figure → jekyll-figure}/version.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 776b90fa868d03ca9d14c13cec83536e4f6d7602a4f41617477273f8a376a150
|
|
4
|
+
data.tar.gz: 4a74ceebf5143fa1e0f7ca6259d29f37a5e7fab178d60d49af2872b859e90f9e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f104190796ef31527fdf72010350d44e50df9b03db99579eedf7c739827d5915b7a56cdbbc9e52e4e1580529fa0b0cb294bf3cec90dd703b8ccf71e5114e7c3
|
|
7
|
+
data.tar.gz: cf4994bba1a2805bd07c1974e282f666c46c6956db138557a3e0f189736f814d230c85f1261e402a31908c35d014c0465a3c970d71ddc24b762e97625193c51d
|
data/.travis.yml
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
script: "script/cibuild"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
- 2.0
|
|
6
|
-
env:
|
|
7
|
-
-
|
|
8
|
-
|
|
3
|
+
matrix:
|
|
4
|
+
include:
|
|
5
|
+
- rvm: 2.0
|
|
6
|
+
env: ""
|
|
7
|
+
- rvm: 2.0
|
|
8
|
+
env: JEKYLL_VERSION=3.0.0
|
|
9
|
+
- rvm: 2.1
|
|
10
|
+
env: ""
|
|
11
|
+
- rvm: 2.1
|
|
12
|
+
env: JEKYLL_VERSION=3.0.0
|
|
13
|
+
- rvm: 2.1
|
|
14
|
+
env: JEKYLL_VERSION=3.7.4
|
data/README.md
CHANGED
|
@@ -10,10 +10,12 @@ A liquid tag for Jekyll that generates `<figure>` elements.
|
|
|
10
10
|
1. Add `gem 'jekyll-figure'` to your site’s Gemfile and run `bundle`
|
|
11
11
|
2. Add the following to your site’s `_config.yml`:
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
|
|
14
|
+
```yaml
|
|
15
|
+
plugins:
|
|
15
16
|
- jekyll-figure
|
|
16
17
|
```
|
|
18
|
+
Note: If you are using a Jekyll version less than 3.5.0, use the `gems` key instead of `plugins`.
|
|
17
19
|
|
|
18
20
|
## Usage
|
|
19
21
|
|
data/jekyll-figure.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'jekyll
|
|
4
|
+
require 'jekyll-figure/version'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "jekyll-figure"
|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.description = "A liquid tag for Jekyll that generates <figure> elements."
|
|
11
11
|
spec.authors = ["Paul Robert Lloyd"]
|
|
12
12
|
spec.email = "me+rubygems@paulrobertlloyd.com"
|
|
13
|
-
spec.files = Dir.glob("lib
|
|
13
|
+
spec.files = Dir.glob("lib/*.rb")
|
|
14
14
|
spec.homepage = "https://github.com/paulrobertlloyd/jekyll-figure"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-figure
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Robert Lloyd
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-12-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -85,8 +85,8 @@ files:
|
|
|
85
85
|
- README.md
|
|
86
86
|
- Rakefile
|
|
87
87
|
- jekyll-figure.gemspec
|
|
88
|
-
- lib/jekyll
|
|
89
|
-
- lib/jekyll
|
|
88
|
+
- lib/jekyll-figure.rb
|
|
89
|
+
- lib/jekyll-figure/version.rb
|
|
90
90
|
- script/bootstrap
|
|
91
91
|
- script/cibuild
|
|
92
92
|
- script/console
|
|
@@ -116,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
116
116
|
version: '0'
|
|
117
117
|
requirements: []
|
|
118
118
|
rubyforge_project:
|
|
119
|
-
rubygems_version: 2.
|
|
119
|
+
rubygems_version: 2.7.7
|
|
120
120
|
signing_key:
|
|
121
121
|
specification_version: 4
|
|
122
122
|
summary: Jekyll plugin that generates <figure> elements.
|