jekyll_quote 0.4.2 → 0.4.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 +4 -4
- data/.rubocop.yml +0 -0
- data/CHANGELOG.md +6 -0
- data/LICENSE.txt +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/jekyll_quote.gemspec +1 -1
- data/lib/jekyll_quote/version.rb +1 -1
- data/lib/jekyll_quote.rb +3 -5
- data/spec/jekyll_quote_spec.rb +0 -0
- data/spec/spec_helper.rb +0 -0
- data/spec/status_persistence.txt +6 -0
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8c0cf6ba4acc52426ba924726f71c6eaa05059dee13ad5650c0c001c99e2682
|
4
|
+
data.tar.gz: d4ca9501acdbc08091c7b7cf6b692dc4973eb85ab1e6dee5598669d1b9fdfb8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: adbed464deefcc300befebdfac0c49adcf1fd1a643d17ff0c1f5c42f53557fbc80e1cf901277e0b3846e249b99d08633896bbce2ed88e7d4d9ac6c910118c2b0
|
7
|
+
data.tar.gz: 7e61341d90a5dce1fdb0efadc4f6372dde7ab21a50ec9cc31b6a83f25779e011c84e80684896d992d931705bafa1e1fdec16cb27447c2fa7d2f35ce653fa41d0
|
data/.rubocop.yml
CHANGED
File without changes
|
data/CHANGELOG.md
CHANGED
data/LICENSE.txt
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/Rakefile
CHANGED
File without changes
|
data/jekyll_quote.gemspec
CHANGED
@@ -28,5 +28,5 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
|
28
28
|
spec.version = JekyllQuoteVersion::VERSION
|
29
29
|
|
30
30
|
spec.add_dependency 'jekyll', '>= 3.5.0'
|
31
|
-
spec.add_dependency 'jekyll_plugin_support', '>= 0.
|
31
|
+
spec.add_dependency 'jekyll_plugin_support', '>= 1.0.0'
|
32
32
|
end
|
data/lib/jekyll_quote/version.rb
CHANGED
data/lib/jekyll_quote.rb
CHANGED
@@ -5,10 +5,6 @@ require_relative 'jekyll_quote/version'
|
|
5
5
|
# @author Copyright 2022 Michael Slinn
|
6
6
|
# @license SPDX-License-Identifier: Apache-2.0
|
7
7
|
|
8
|
-
module QuoteModule
|
9
|
-
PLUGIN_NAME = 'quote'.freeze
|
10
|
-
end
|
11
|
-
|
12
8
|
module Jekyll
|
13
9
|
# Usage: {% quote [break] [by] [cite='Joe Blow'] [noprep] [url='https://blabla.com'] %}Bla bla.{% endquote %}
|
14
10
|
# Output looks like:
|
@@ -17,6 +13,8 @@ module Jekyll
|
|
17
13
|
# <br><br> <span style='font-style:normal;'> – From Source cite.</span>
|
18
14
|
# </div>
|
19
15
|
class Quote < JekyllSupport::JekyllBlock
|
16
|
+
PLUGIN_NAME = 'quote'.freeze
|
17
|
+
|
20
18
|
attr_accessor :cite, :url
|
21
19
|
|
22
20
|
include JekyllQuoteVersion
|
@@ -58,6 +56,6 @@ module Jekyll
|
|
58
56
|
END_HERE
|
59
57
|
end
|
60
58
|
|
61
|
-
JekyllPluginHelper.register(self,
|
59
|
+
JekyllSupport::JekyllPluginHelper.register(self, PLUGIN_NAME)
|
62
60
|
end
|
63
61
|
end
|
data/spec/jekyll_quote_spec.rb
CHANGED
File without changes
|
data/spec/spec_helper.rb
CHANGED
File without changes
|
@@ -0,0 +1,6 @@
|
|
1
|
+
example_id | status | run_time |
|
2
|
+
-------------------------------- | ------ | --------------- |
|
3
|
+
./spec/jekyll_quote_spec.rb[1:1] | failed | 0.00015 seconds |
|
4
|
+
./spec/jekyll_quote_spec.rb[1:2] | failed | 0.00006 seconds |
|
5
|
+
./spec/jekyll_quote_spec.rb[1:3] | failed | 0.00006 seconds |
|
6
|
+
./spec/jekyll_quote_spec.rb[1:4] | failed | 0.00005 seconds |
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll_quote
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Slinn
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: 1.0.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: 1.0.0
|
41
41
|
description:
|
42
42
|
email:
|
43
43
|
- mslinn@mslinn.com
|
@@ -55,6 +55,7 @@ files:
|
|
55
55
|
- lib/jekyll_quote/version.rb
|
56
56
|
- spec/jekyll_quote_spec.rb
|
57
57
|
- spec/spec_helper.rb
|
58
|
+
- spec/status_persistence.txt
|
58
59
|
homepage: https://www.mslinn.com/jekyll_plugins/jekyll_quote.html
|
59
60
|
licenses:
|
60
61
|
- MIT
|
@@ -82,11 +83,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
83
|
- !ruby/object:Gem::Version
|
83
84
|
version: '0'
|
84
85
|
requirements: []
|
85
|
-
rubygems_version: 3.
|
86
|
+
rubygems_version: 3.5.16
|
86
87
|
signing_key:
|
87
88
|
specification_version: 4
|
88
89
|
summary: Provides a Jekyll filter that creates formatted quotes.
|
89
90
|
test_files:
|
90
91
|
- spec/jekyll_quote_spec.rb
|
91
92
|
- spec/spec_helper.rb
|
93
|
+
- spec/status_persistence.txt
|
92
94
|
...
|