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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b607fc334812c9d05cbf344a6c8adf849e454c0d
4
- data.tar.gz: a8164b53e9a8fede5ddc1276180fb2e571199959
2
+ SHA256:
3
+ metadata.gz: 776b90fa868d03ca9d14c13cec83536e4f6d7602a4f41617477273f8a376a150
4
+ data.tar.gz: 4a74ceebf5143fa1e0f7ca6259d29f37a5e7fab178d60d49af2872b859e90f9e
5
5
  SHA512:
6
- metadata.gz: 735090c369087710037291dc4a6ccf234a3a4a68b2b8e9790abb1cb5cb9b41677147b7a5f3b71a24c18c8ae1ddd34a275074afaeb7fcc4d1e4b862f6ccbb91e8
7
- data.tar.gz: 8a5ce783d22361ca3066629921e806e3ec2ec3eb47169723b37cc133d36a67800335478604d82fa34fdccc4bdfb96da918dc6b6714d93863bac39aea63eb1169
6
+ metadata.gz: 8f104190796ef31527fdf72010350d44e50df9b03db99579eedf7c739827d5915b7a56cdbbc9e52e4e1580529fa0b0cb294bf3cec90dd703b8ccf71e5114e7c3
7
+ data.tar.gz: cf4994bba1a2805bd07c1974e282f666c46c6956db138557a3e0f189736f814d230c85f1261e402a31908c35d014c0465a3c970d71ddc24b762e97625193c51d
@@ -1,8 +1,14 @@
1
1
  language: ruby
2
2
  script: "script/cibuild"
3
- rvm:
4
- - 2.1
5
- - 2.0
6
- env:
7
- - ""
8
- - JEKYLL_VERSION=3.0.0
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
- ```yml
14
- gems:
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
 
@@ -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/figure/version'
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/**/*.rb")
13
+ spec.files = Dir.glob("lib/*.rb")
14
14
  spec.homepage = "https://github.com/paulrobertlloyd/jekyll-figure"
15
15
  spec.license = "MIT"
16
16
 
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Figure
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.3"
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
1
  require 'jekyll'
2
- require File.expand_path('../lib/jekyll/figure', File.dirname(__FILE__))
2
+ require File.expand_path('../lib/jekyll-figure', File.dirname(__FILE__))
3
3
 
4
4
  Jekyll.logger.log_level = :error
5
5
 
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.2
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: 2015-11-14 00:00:00.000000000 Z
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/figure.rb
89
- - lib/jekyll/figure/version.rb
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.4.6
119
+ rubygems_version: 2.7.7
120
120
  signing_key:
121
121
  specification_version: 4
122
122
  summary: Jekyll plugin that generates <figure> elements.